diff --git a/.circleci/config.yml b/.circleci/config.yml index d663181af41..586769c21f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,11 @@ -version: 2.1 # use CircleCI 2.1 +--- +version: 2.1 # use CircleCI 2.1 orbs: python: circleci/python@2.1.1 -jobs: # A basic unit of work in a run +jobs: # A basic unit of work in a run - build: # runs not using Workflows must have a `build` job as entry point + build: # runs not using Workflows must have a `build` job as entry point # How to specify Python version in circleCI orb? # https://discuss.circleci.com/t/how-to-specify-python-version-in-circleci-orb/47322/3 executor: @@ -12,11 +13,11 @@ jobs: # A basic unit of work in a run # use Python 3.10 tag: "3.12" - steps: # steps that comprise the `build` job + steps: # steps that comprise the `build` job - checkout - run: command: - python --version + python --version name: Check python version - run: command: @@ -45,10 +46,12 @@ jobs: # A basic unit of work in a run command: python -m pytest name: Run tests with pytest - - - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ + # Upload test results for display in Test Summary: + # https://circleci.com/docs/2.0/collect-test-data/ + - store_test_results: path: test-results/ - - - store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ + # Upload test summary for display in Artifacts: + # https://circleci.com/docs/2.0/artifacts/ + - store_artifacts: path: test-results/ - destination: tr1 \ No newline at end of file + destination: tr1 diff --git a/.codacy.yml b/.codacy.yml index be9ff9185a6..237a0687d9f 100644 --- a/.codacy.yml +++ b/.codacy.yml @@ -1,34 +1,34 @@ --- engines: duplication: - enabled: true + enabled: true metric: - enabled: true + enabled: true coverage: - enabled: true + enabled: true prospector: enabled: true pylint: enabled: true python_version: 3.7 languages: - python: - extensions: - - '.py' + python: + extensions: + - '.py' markup: - extensions: - - '.md' + extensions: + - '.md' exclude_paths: - - 'docs/**' - - 'allure-report/**' - - 'img/**' - - '.circleci/**' - - '.circleci/**' - - '.github/**' - - '*__init__.py' - - 'rocro.yml' - - 'requirements.txt' - - 'pytest.ini' - - '.travis.yml' - - '.gitignore' - - '.gitattributes' + - 'docs/**' + - 'allure-report/**' + - 'img/**' + - '.circleci/**' + - '.circleci/**' + - '.github/**' + - '*__init__.py' + - 'rocro.yml' + - 'requirements.txt' + - 'pytest.ini' + - '.travis.yml' + - '.gitignore' + - '.gitattributes' diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 00000000000..7a47b516500 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,10 @@ +--- +engines: + # ... CONFIG CONTENT ... + pylint: + enabled: true + # ... CONFIG CONTENT ... + checks: + import-error: + enabled: false +# ... CONFIG CONTENT ... diff --git a/.coveragerc b/.coveragerc index b69dcb91dde..a86a94f27ab 100644 --- a/.coveragerc +++ b/.coveragerc @@ -8,3 +8,15 @@ omit = __init__* *.md docs/* + venv/* + *.gif + *.html + /tests/* + test_* + +[report] +; Regexes for lines to exclude from consideration + +exclude_also = + ; Don't complain if non-runnable code isn't run: + if __name__ == .__main__.: diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d609c8b37f8..eae7ab74462 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -44,4 +44,4 @@ updates: interval: "daily" # Labels on pull requests for version updates only labels: - - "GitHub actions versions" \ No newline at end of file + - "GitHub actions versions" diff --git a/.github/workflows/codeclimate_coverage.yml b/.github/workflows/codeclimate_coverage.yml new file mode 100644 index 00000000000..1f39fa91ecd --- /dev/null +++ b/.github/workflows/codeclimate_coverage.yml @@ -0,0 +1,47 @@ +--- +name: Code Climate Coverage Report + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + workflow_call: + secrets: + cc_test_reporter_id: + required: true + +jobs: + run: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + python-version: ["3.X"] + steps: + - uses: actions/checkout@main + - name: Setup Python + uses: actions/setup-python@main + with: + python-version: ${{ matrix.python-version }} + - name: Install Dependencies + run: | + python -m pip install --upgrade pip setuptools + python -m pip install pytest + pip install -r requirements.txt + pip install pytest-cov + - name: Check PYTHONPATH + run: | + pwd + export PYTHONPATH=.:$PYTHONPATH + - name: Upload coverage to Code Climate + uses: paambaati/codeclimate-action@v9.0.0 + env: + CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} + with: + # yamllint disable rule:line-length + coverageCommand: python -m pytest . -v --cov-report term-missing --cov-report=xml --cov=./ + # yamllint enable rule:line-length + debug: true diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml new file mode 100644 index 00000000000..504a61e4e3d --- /dev/null +++ b/.github/workflows/codecov.yml @@ -0,0 +1,50 @@ +--- +name: Codecov Coverage Report + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + # Why is Codecov upload step in GitHub Actions not finding the token? + # https://stackoverflow.com/questions/78298827/why-is-codecov-upload-step-in-github-actions-not-finding-the-token + workflow_call: + secrets: + codecov_token: + required: true +jobs: + run: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + python-version: ["3.12"] + steps: + - uses: actions/checkout@main + - name: Setup Python + uses: actions/setup-python@main + with: + python-version: ${{ matrix.python-version }} + - name: Install prerequisites + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + - name: Install pytest, pytest-cov + run: | + pip install pytest + pip install pytest-cov + - name: Generate coverage report + # yamllint disable rule:line-length + run: | + python -c "import os; print(os.getcwd())" + python -m pytest . -v --cov-report term-missing --cov-report=xml --cov=./ + # yamllint enable rule:line-length + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v5.0.7 + with: + token: ${{ secrets.codecov_token }} + files: coverage.xml + fail_ci_if_error: true # optional (default = false) + verbose: true # optional (default = false) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000000..79dc3307da2 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,98 @@ +--- +# yamllint disable +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# + +name: "CodeQL" + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + workflow_call: + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners (GitHub.com only) + # Consider using larger runners or machines with greater resources for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + # required for all workflows + security-events: write + + # required to fetch internal or private CodeQL packs + packages: read + + # only required for workflows in private repositories + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + include: + - language: python + build-mode: none + # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' + # Use `c-cpp` to analyze code written in C, C++ or both + # Use 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, + # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. + # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how + # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + # If the analyze step fails for one of the languages you are analyzing with + # "We were unable to automatically build your code", modify the matrix above + # to set the build mode to "manual" for that language. Then modify this step + # to build your code. + # âšī¸ Command-line programs to run using the OS shell. + # đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - if: matrix.build-mode == 'manual' + run: | + echo 'If you are using a "manual" build mode for one or more of the' \ + 'languages you are analyzing, replace this with the commands to build' \ + 'your code, for example:' + echo ' make bootstrap' + echo ' make release' + exit 1 + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index f95a3be838c..dcdc32c9235 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -1,7 +1,7 @@ --- name: Flake8 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'utils' @@ -46,4 +46,4 @@ jobs: run: | flake8 . --count --select=E9,F63,F7,F82 --doctests --show-source --statistics flake8 . --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics - # yamllint enable rule:line-length \ No newline at end of file + # yamllint enable rule:line-length diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 3f848fe08e3..9952a11ae4f 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -1,7 +1,7 @@ --- name: Flake8 for kyu2 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu2' @@ -44,4 +44,4 @@ jobs: run: | flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_2 flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_2 - # yamllint enable rule:line-length \ No newline at end of file + # yamllint enable rule:line-length diff --git a/.github/workflows/flake8_kyu3.yml b/.github/workflows/flake8_kyu3.yml new file mode 100644 index 00000000000..db268875b55 --- /dev/null +++ b/.github/workflows/flake8_kyu3.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu3 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu3' + +permissions: + contents: read + pull-requests: read + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.x"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current + # Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install flake8 + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Lint with flake8 + # yamllint disable rule:line-length + # stop the build if there are Python syntax errors or undefined names + # exit-zero treats all errors as warnings. + # The GitHub editor is 127 chars wide + run: | + flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_3 + flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_3 + # yamllint enable rule:line-length diff --git a/.github/workflows/flake8_kyu4.yml b/.github/workflows/flake8_kyu4.yml new file mode 100644 index 00000000000..c6a40769464 --- /dev/null +++ b/.github/workflows/flake8_kyu4.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu4 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu4' + +permissions: + contents: read + pull-requests: read + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.x"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current + # Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install flake8 + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Lint with flake8 + # yamllint disable rule:line-length + # stop the build if there are Python syntax errors or undefined names + # exit-zero treats all errors as warnings. + # The GitHub editor is 127 chars wide + run: | + flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_4 + flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_4 + # yamllint enable rule:line-length diff --git a/.github/workflows/flake8_kyu5.yml b/.github/workflows/flake8_kyu5.yml new file mode 100644 index 00000000000..949d523fc23 --- /dev/null +++ b/.github/workflows/flake8_kyu5.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu5 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu5' + +permissions: + contents: read + pull-requests: read + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.x"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current + # Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install flake8 + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Lint with flake8 + # yamllint disable rule:line-length + # stop the build if there are Python syntax errors or undefined names + # exit-zero treats all errors as warnings. + # The GitHub editor is 127 chars wide + run: | + flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_5 + flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_5 + # yamllint enable rule:line-length diff --git a/.github/workflows/flake8_kyu6.yml b/.github/workflows/flake8_kyu6.yml new file mode 100644 index 00000000000..bb63ca50e62 --- /dev/null +++ b/.github/workflows/flake8_kyu6.yml @@ -0,0 +1,47 @@ +--- +name: Flake8 for kyu6 + +on: # yamllint disable-line rule:truthy + push: + branches: + - 'kyu6' + +permissions: + contents: read + pull-requests: read + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.x"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current + # Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install flake8 + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Lint with flake8 + # yamllint disable rule:line-length + # stop the build if there are Python syntax errors or undefined names + # exit-zero treats all errors as warnings. + # The GitHub editor is 127 chars wide + run: | + flake8 --count --select=E9,F63,F7,F82 --doctests --show-source --statistics ./kyu_6 + flake8 --count --max-complexity=10 --max-line-length=127 --benchmark --show-source --statistics ./kyu_6 + # yamllint enable rule:line-length diff --git a/.github/workflows/lint_test_build_pipeline.yml b/.github/workflows/lint_test_build_pipeline.yml index 7cc548b3a67..28eaad4cef4 100644 --- a/.github/workflows/lint_test_build_pipeline.yml +++ b/.github/workflows/lint_test_build_pipeline.yml @@ -1,6 +1,7 @@ +--- name: Main Build Pipeline -on: +on: # yamllint disable-line rule:truthy push: branches: - master @@ -9,12 +10,54 @@ jobs: markdown: name: Markdown Lint uses: iKostanOrg/codewars/.github/workflows/markdown_lint.yml@master - pyint: - name: PyLint + pylint: + name: Py Lint uses: iKostanOrg/codewars/.github/workflows/pylint.yml@master mypy: name: MyPy Lint uses: iKostanOrg/codewars/.github/workflows/mypy.yml@master flake8: name: Flake8 Lint - uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master \ No newline at end of file + uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master + yamllint: + name: YAML Lint + uses: iKostanOrg/codewars/.github/workflows/yamllint.yml@master + pytest: + name: Unitest with pytest + needs: + - flake8 + - pylint + - markdown + - mypy + - yamllint + uses: iKostanOrg/codewars/.github/workflows/pytest.yml@master + codecov: + name: Codecov GitHub Action + needs: + - pytest + uses: iKostanOrg/codewars/.github/workflows/codecov.yml@master + # Why is Codecov upload step in GitHub Actions not finding the token? + # https://stackoverflow.com/questions/78298827/why-is-codecov-upload-step-in-github-actions-not-finding-the-token + secrets: + codecov_token: ${{ secrets.CODECOV_TOKEN }} + codeclimate: + name: Codeclimate Github Action + needs: + - pytest + uses: iKostanOrg/codewars/.github/workflows/codeclimate_coverage.yml@master + secrets: + cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }} + codeql: + name: CodeQL for a new build + needs: + - codecov + - codeclimate + uses: ikostan/pico/.github/workflows/codeql.yml@master + snyk: + name: Snyk for a new build + needs: + - codecov + - codeclimate + uses: ikostan/pico/.github/workflows/snyk.yml@master + secrets: + snyk_token: ${{ secrets.SNYK_TOKEN }} diff --git a/.github/workflows/markdown_lint.yml b/.github/workflows/markdown_lint.yml index cb42838374c..64a623ac2da 100644 --- a/.github/workflows/markdown_lint.yml +++ b/.github/workflows/markdown_lint.yml @@ -1,6 +1,7 @@ +--- name: 'Markdown Lint' -on: +on: # yamllint disable-line rule:truthy push: branches: - 'Documentation' @@ -14,16 +15,12 @@ jobs: lint: runs-on: ubuntu-latest steps: - - name: Checkout v4 - uses: actions/checkout@v4 - #- name: Install markdownlint - # run: | - # npm install markdownlint-cli2 --global - # markdownlint-cli2 "**/*.md" --config ".markdownlint-cli2.yaml" - - name: markdownlint-cli2-action v16 - uses: DavidAnson/markdownlint-cli2-action@v17 - with: - config: '.markdownlint-cli2.yaml' - fix: true - globs: '**/*.md' - separator: ',' + - name: Checkout v4 + uses: actions/checkout@v4 + - name: markdownlint-cli2-action v16 + uses: DavidAnson/markdownlint-cli2-action@v18 + with: + config: '.markdownlint-cli2.yaml' + fix: true + globs: '**/*.md' + separator: ',' diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 770af5d41f1..f5da779c804 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -1,6 +1,7 @@ +--- name: MyPy Lint -on: +on: # yamllint disable-line rule:truthy push: branches: - 'utils' diff --git a/.github/workflows/mypy_kyu2.yml b/.github/workflows/mypy_kyu2.yml index 2cb637e0803..c0a911f4faf 100644 --- a/.github/workflows/mypy_kyu2.yml +++ b/.github/workflows/mypy_kyu2.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu2 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu2' diff --git a/.github/workflows/mypy_kyu3.yml b/.github/workflows/mypy_kyu3.yml index 1a6f0dfe5ee..f9f6be862bf 100644 --- a/.github/workflows/mypy_kyu3.yml +++ b/.github/workflows/mypy_kyu3.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu3 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu3' diff --git a/.github/workflows/mypy_kyu4.yml b/.github/workflows/mypy_kyu4.yml index cc2e6105b9a..2004ff181f4 100644 --- a/.github/workflows/mypy_kyu4.yml +++ b/.github/workflows/mypy_kyu4.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu4 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu4' diff --git a/.github/workflows/mypy_kyu5.yml b/.github/workflows/mypy_kyu5.yml index a659b41c891..f26d1e9b08d 100644 --- a/.github/workflows/mypy_kyu5.yml +++ b/.github/workflows/mypy_kyu5.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu5 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu5' diff --git a/.github/workflows/mypy_kyu6.yml b/.github/workflows/mypy_kyu6.yml index d3db064f238..65878b25524 100644 --- a/.github/workflows/mypy_kyu6.yml +++ b/.github/workflows/mypy_kyu6.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu6 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu6' diff --git a/.github/workflows/mypy_kyu7.yml b/.github/workflows/mypy_kyu7.yml index ccda0d1275c..05e3d172197 100644 --- a/.github/workflows/mypy_kyu7.yml +++ b/.github/workflows/mypy_kyu7.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu7 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu7' diff --git a/.github/workflows/mypy_kyu8.yml b/.github/workflows/mypy_kyu8.yml index 3fe6834c980..820ffd8f9f3 100644 --- a/.github/workflows/mypy_kyu8.yml +++ b/.github/workflows/mypy_kyu8.yml @@ -1,6 +1,7 @@ +--- name: MyPy for kyu8 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu8' diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index ec2aa9cc8dd..e06244d2491 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,6 +1,7 @@ +--- name: PyLint -on: +on: # yamllint disable-line rule:truthy push: branches: - 'utils' @@ -18,30 +19,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint $(git ls-files '*.py') \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint $(git ls-files '*.py') diff --git a/.github/workflows/pylint_kyu2.yml b/.github/workflows/pylint_kyu2.yml index 617b211068a..6c04f48a8d4 100644 --- a/.github/workflows/pylint_kyu2.yml +++ b/.github/workflows/pylint_kyu2.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu2 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu2' @@ -16,30 +17,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_2 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_2 diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index e5320c4681e..a78be28a815 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu3 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu3' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_3 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_3 diff --git a/.github/workflows/pylint_kyu4.yml b/.github/workflows/pylint_kyu4.yml index 75df2d8fcb6..09aa80f47e8 100644 --- a/.github/workflows/pylint_kyu4.yml +++ b/.github/workflows/pylint_kyu4.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu4 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu4' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_4 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_4 diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index eaf6ff889fa..130d1c7257e 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu5 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu5' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_5 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_5 diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index b9a4d18a5c1..83553dca5f7 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu6 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu6' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_6 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_6 diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index 2210d279d28..9f2a38a8fd8 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu7 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu7' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_7 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_7 diff --git a/.github/workflows/pylint_kyu8.yml b/.github/workflows/pylint_kyu8.yml index 945163e3724..f2a4c21daf5 100644 --- a/.github/workflows/pylint_kyu8.yml +++ b/.github/workflows/pylint_kyu8.yml @@ -1,6 +1,7 @@ +--- name: PyLint for kyu8 -on: +on: # yamllint disable-line rule:truthy push: branches: - 'kyu8' @@ -12,30 +13,31 @@ jobs: matrix: python-version: ["3.x"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - # You can test your matrix by printing the current Python version - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements.txt - pip install pylint - - name: Version check - run: | - pylint --version - - name: Get/Export current directory - run: | - pwd - export PYTHONPATH=$PYTHONPATH:./codewars - - name: Check to make sure that the module is in your Python path - run: | - echo $PYTHONPATH - - name: Analysing the code with pylint - run: | - python -m pylint -v ./kyu_8 \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + pip install pylint + - name: Version check + run: | + pylint --version + - name: Get/Export current directory + run: | + pwd + export PYTHONPATH=$PYTHONPATH:./codewars + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Analysing the code with pylint + run: | + python -m pylint -v ./kyu_8 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 00000000000..82e602905a6 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,89 @@ +--- +# This workflow will install Python dependencies, run tests +# and lint with a variety of Python versions +# For more information see: +# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Unitest with pytest + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + workflow_call: + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest] + python-version: ["3.12"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up Python, + # not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + python -m pip install pytest + pip install -r requirements.txt + - name: Version check + run: + pytest --version + - name: Unitest with pytest + # yamllint disable rule:line-length + run: + python -m pytest . -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=./ --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + # yamllint enable rule:line-length + - name: Upload pytest test artifacts + uses: actions/upload-artifact@v4 + with: + # Name of the artifact to upload. + # Optional. Default is 'artifact' + name: + pytest-results-${{ matrix.os }}-${{ matrix.python-version }} + path: + junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml + # If true, an artifact with a matching name will be deleted before + # a new one is uploaded. If false, the action will fail if an + # artifact for the given name already exists. Does not fail if + # the artifact does not exist. Optional. Default is 'false' + overwrite: false + - name: Upload pytest coverage artifacts + uses: actions/upload-artifact@v4 + with: + name: + pytest-coverage-${{ matrix.os }}-${{ matrix.python-version }} + path: + test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + # The retention-days value cannot exceed the retention + # limit set by the repository, organization, or enterprise. + # You can define a custom retention period for individual + # artifacts created by a workflow. When using a workflow to + # create a new artifact, you can use retention-days with the + # upload-artifact action. + retention-days: 2 + # If true, an artifact with a matching name will be deleted + # before a new one is uploaded. If false, the action will + # fail if an artifact for the given name already exists. + # Does not fail if the artifact does not exist. + # Optional. Default is 'false' + overwrite: false + # Use always() to always run this step to publish test results + # when there are test failures + if: ${{ always() }} diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml new file mode 100644 index 00000000000..f2fc9b4298b --- /dev/null +++ b/.github/workflows/snyk.yml @@ -0,0 +1,71 @@ +--- +name: "Snyk" + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + workflow_call: + secrets: + snyk_token: + description: + 'A Snyk token passed from the caller workflow' + required: true +jobs: + security: + permissions: + # for actions/checkout to fetch code + contents: read + # for github/codeql-action/upload-sarif to upload SARIF results + security-events: write + # only required for a private repository by + # github/codeql-action/upload-sarif to get the Action run status + actions: read + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: snyk/actions/setup@master + # Source: https://github.com/actions/setup-python + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + check-latest: true + - name: Install python prerequisites + run: + python -m pip install -r requirements.txt + # If you want to send data to Snyk, and be alerted when new + # vulnerabilities are discovered, you can run Snyk monitor like so: + - name: Run Snyk to send data to Snyk + run: + snyk monitor + env: + token: ${{ secrets.snyk_token }} + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + - name: Check/Upgrade setuptools version + run: | + python --version + python -m pip install --upgrade pip wheel + yes | python -m pip uninstall setuptools + python -m pip install --upgrade setuptools + python -m pip show setuptools + - name: Run Snyk to check for vulnerabilities + # yamllint disable rule:line-length + run: + snyk test --sarif-file-output=snyk.sarif --file=requirements.txt --package-manager=pip + # yamllint enable rule:line-length + env: + token: ${{ secrets.snyk_token }} + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + # To make sure that SARIF upload gets called + # continue-on-error: true + # Push the Snyk Code results into GitHub Code Scanning tab + - name: Upload result to GitHub Code Scanning + # Run a github-actions step, even if the previous step fails, + # while still failing the job + if: success() || failure() + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: snyk.sarif diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml new file mode 100644 index 00000000000..d99a3e30c0b --- /dev/null +++ b/.github/workflows/yamllint.yml @@ -0,0 +1,39 @@ +--- +name: Yamllint + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - opened + - edited + - reopened + - synchronize + workflow_call: + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.x"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + # This is the version of the action for setting up + # Python, not the Python version. + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + # You can test your matrix by printing the current Python version + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Install yamllint + run: | + python -m pip install --upgrade pip setuptools wheel + pip install --user yamllint + - name: Version check + run: | + yamllint --version + - name: Analysing YML files + run: | + yamllint . -c .yamllint.yaml diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 7063bb113e6..97589fe9d76 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -1,5 +1,7 @@ +--- # An example .markdownlint-cli2.yaml file -# Example markdownlint configuration with all properties set to their default value +# Example markdownlint configuration with all +# properties set to their default value # https://github.com/DavidAnson/markdownlint/blob/v0.32.1/schema/.markdownlint.yaml # Fix any fixable errors @@ -7,16 +9,14 @@ fix: true # Ignore files referenced by .gitignore (only valid at root) gitignore: true - # Define glob expressions to use (only valid at root) -#globs: +# globs: # - "!*bout.md" - # Define glob expressions to ignore -#ignores: +# ignores: # - "ignore*.md" - -# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md +# MD013/line-length : Line length : +# https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md MD013: # Number of characters line_length: 80 @@ -33,4 +33,4 @@ MD013: # Strict length checking strict: false # Stern length checking - stern: false \ No newline at end of file + stern: false diff --git a/.readthedocs.yaml b/.readthedocs.yaml index dec6d113c4a..1c79631dd71 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,3 +1,4 @@ +--- # Read the Docs configuration file for Sphinx projects # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details @@ -13,7 +14,8 @@ build: # Build documentation in the "docs/" directory with Sphinx sphinx: configuration: docs/conf.py - # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs + # You can configure Sphinx to use a different builder, + # for instance use the dirhtml builder for simpler URLs # builder: "dirhtml" # Fail on all warnings to avoid broken references fail_on_warning: true @@ -27,6 +29,6 @@ sphinx: # to build your documentation # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: - install: - - requirements: requirements.txt - - requirements: docs/sphinx_requirements.txt \ No newline at end of file + install: + - requirements: requirements.txt + - requirements: docs/sphinx_requirements.txt diff --git a/.yamllint.yaml b/.yamllint.yaml new file mode 100644 index 00000000000..84789e6067c --- /dev/null +++ b/.yamllint.yaml @@ -0,0 +1,41 @@ +--- +# yamllint â Linter for YAML files +# https://www.mankier.com/1/yamllint#Table_of_Contents-Configuration +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +ignore: | + depricated/ + +rules: + anchors: enable + braces: enable + brackets: enable + colons: enable + commas: enable + comments: + level: warning + comments-indentation: + level: warning + document-end: disable + document-start: + level: warning + empty-lines: enable + empty-values: disable + float-values: disable + hyphens: enable + indentation: enable + key-duplicates: enable + key-ordering: disable + line-length: + max: 80 + level: warning + new-line-at-end-of-file: enable + new-lines: enable + octal-values: disable + quoted-strings: disable + trailing-spaces: enable + truthy: + level: warning diff --git a/README.md b/README.md index ca74b10ac83..e7b1fc12747 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,17 @@ [![Main Build Pipeline](https://github.com/iKostanOrg/codewars/actions/workflows/lint_test_build_pipeline.yml/badge.svg)](https://github.com/iKostanOrg/codewars/actions/workflows/lint_test_build_pipeline.yml) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/iKostanOrg/codewars) -[![Documentation Status](https://readthedocs.org/projects/codewars/badge/?version=latest)](https://codewars.readthedocs.io/en/latest/?badge=latest) +[![Documentation Status](https://readthedocs.org/projects/codewars/badge/?version=latest)](https://codewars.readthedocs.io/?badge=latest) [![Netlify Status](https://api.netlify.com/api/v1/badges/f14135ff-6f3e-450c-b391-5a677b8f8d8a/deploy-status)](https://app.netlify.com/sites/codewars-allure-report/deploys) [![CircleCI](https://circleci.com/gh/iKostanOrg/codewars.svg?style=svg)](https://circleci.com/gh/iKostanOrg/codewars) [![codecov](https://codecov.io/gh/iKostanOrg/codewars/branch/master/graph/badge.svg)](https://codecov.io/gh/iKostanOrg/codewars) [![CodeFactor](https://www.codefactor.io/repository/github/ikostanorg/codewars/badge)](https://www.codefactor.io/repository/github/ikostanorg/codewars) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/647e16e648f748a28fce36b4895f7729)](https://www.codacy.com/gh/iKostanOrg/codewars?utm_source=github.com&utm_medium=referral&utm_content=iKostanOrg/codewars&utm_campaign=Badge_Grade) -[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/647e16e648f748a28fce36b4895f7729)](https://www.codacy.com/gh/iKostanOrg/codewars?utm_source=github.com&utm_medium=referral&utm_content=iKostanOrg/codewars&utm_campaign=Badge_Coverage) [![Maintainability](https://api.codeclimate.com/v1/badges/c22e4214ebb0b0626b83/maintainability)](https://codeclimate.com/github/iKostanOrg/codewars/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/c22e4214ebb0b0626b83/test_coverage)](https://codeclimate.com/github/iKostanOrg/codewars/test_coverage) ![Maintenance](https://img.shields.io/maintenance/yes/2024) -[![Known Vulnerabilities](https://snyk.io/test/github/iKostanOrg/codewars/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/iKostanOrg/codewars?targetFile=requirements.txt) +![GitHub repo size](https://img.shields.io/github/repo-size/iKostanOrg/codewars?color=green) +![GitHub last commit](https://img.shields.io/github/last-commit/iKostanOrg/codewars?color=green) ![Micro badge](https://www.codewars.com/users/myFirstCode/badges/micro) ## About Codewars @@ -89,7 +89,7 @@ During report generation (second step), the XML files are transformed to a HTML report. This can be done with a command line tool, a plugin for CI or a build tool. -[Online version of the latest Allure report](https://codewars-allure-report.netlify.com) +[Online version of the latest Allure report](https://codewars-allure-report.netlify.app/) ## Tech Issues and Problem Solving diff --git a/allure-report/data/attachments/48a054aaded1508.txt b/allure-report/data/attachments/109442e0bd8a1bf7.txt similarity index 100% rename from allure-report/data/attachments/48a054aaded1508.txt rename to allure-report/data/attachments/109442e0bd8a1bf7.txt diff --git a/allure-report/data/attachments/a1fb723ed6209615.txt b/allure-report/data/attachments/109a63364b1709cb.txt similarity index 100% rename from allure-report/data/attachments/a1fb723ed6209615.txt rename to allure-report/data/attachments/109a63364b1709cb.txt diff --git a/allure-report/data/attachments/c243a724cee6015a.txt b/allure-report/data/attachments/10a01d4023ecf988.txt similarity index 100% rename from allure-report/data/attachments/c243a724cee6015a.txt rename to allure-report/data/attachments/10a01d4023ecf988.txt diff --git a/allure-report/data/attachments/223102ee65639b46.txt b/allure-report/data/attachments/10ab1851bf24b8d6.txt similarity index 100% rename from allure-report/data/attachments/223102ee65639b46.txt rename to allure-report/data/attachments/10ab1851bf24b8d6.txt diff --git a/allure-report/data/attachments/167e62bfea691dff.txt b/allure-report/data/attachments/11f397a799a36e46.txt similarity index 100% rename from allure-report/data/attachments/167e62bfea691dff.txt rename to allure-report/data/attachments/11f397a799a36e46.txt diff --git a/allure-report/data/attachments/2ec0e0654514a566.txt b/allure-report/data/attachments/125be537d5adaaca.txt similarity index 100% rename from allure-report/data/attachments/2ec0e0654514a566.txt rename to allure-report/data/attachments/125be537d5adaaca.txt diff --git a/allure-report/data/attachments/24af3f1690a1750.txt b/allure-report/data/attachments/12f8c2c15d255220.txt similarity index 100% rename from allure-report/data/attachments/24af3f1690a1750.txt rename to allure-report/data/attachments/12f8c2c15d255220.txt diff --git a/allure-report/data/attachments/16514ad99c38029.txt b/allure-report/data/attachments/1317b7c3ac9b35f3.txt similarity index 100% rename from allure-report/data/attachments/16514ad99c38029.txt rename to allure-report/data/attachments/1317b7c3ac9b35f3.txt diff --git a/allure-report/data/attachments/2ab5d05911fa6e28.txt b/allure-report/data/attachments/137f1698764a14f9.txt similarity index 100% rename from allure-report/data/attachments/2ab5d05911fa6e28.txt rename to allure-report/data/attachments/137f1698764a14f9.txt diff --git a/allure-report/data/attachments/2835a835dfc96c0c.txt b/allure-report/data/attachments/1396f0b44562fb.txt similarity index 100% rename from allure-report/data/attachments/2835a835dfc96c0c.txt rename to allure-report/data/attachments/1396f0b44562fb.txt diff --git a/allure-report/data/attachments/8b0a6143164600f.txt b/allure-report/data/attachments/1432622f91e93164.txt similarity index 100% rename from allure-report/data/attachments/8b0a6143164600f.txt rename to allure-report/data/attachments/1432622f91e93164.txt diff --git a/allure-report/data/attachments/93af2f644721a146.txt b/allure-report/data/attachments/14a8f582bcfd592e.txt similarity index 100% rename from allure-report/data/attachments/93af2f644721a146.txt rename to allure-report/data/attachments/14a8f582bcfd592e.txt diff --git a/allure-report/data/attachments/a5cb0f1347c132fe.txt b/allure-report/data/attachments/14b7835dfcf5573.txt similarity index 100% rename from allure-report/data/attachments/a5cb0f1347c132fe.txt rename to allure-report/data/attachments/14b7835dfcf5573.txt diff --git a/allure-report/data/attachments/e7476696af18d9ef.txt b/allure-report/data/attachments/14eb68b01bad174e.txt similarity index 100% rename from allure-report/data/attachments/e7476696af18d9ef.txt rename to allure-report/data/attachments/14eb68b01bad174e.txt diff --git a/allure-report/data/attachments/46d0fbec2255f23d.txt b/allure-report/data/attachments/156bd3bd78bc6da3.txt similarity index 100% rename from allure-report/data/attachments/46d0fbec2255f23d.txt rename to allure-report/data/attachments/156bd3bd78bc6da3.txt diff --git a/allure-report/data/attachments/e09ff6118121df43.txt b/allure-report/data/attachments/15ba330274e4476f.txt similarity index 100% rename from allure-report/data/attachments/e09ff6118121df43.txt rename to allure-report/data/attachments/15ba330274e4476f.txt diff --git a/allure-report/data/attachments/70a62533038d97f8.txt b/allure-report/data/attachments/160b559167718fe9.txt similarity index 100% rename from allure-report/data/attachments/70a62533038d97f8.txt rename to allure-report/data/attachments/160b559167718fe9.txt diff --git a/allure-report/data/attachments/146ba33ea5b8b774.txt b/allure-report/data/attachments/170e0e9c6fcebe10.txt similarity index 100% rename from allure-report/data/attachments/146ba33ea5b8b774.txt rename to allure-report/data/attachments/170e0e9c6fcebe10.txt diff --git a/allure-report/data/attachments/a22ae5e3f6546093.txt b/allure-report/data/attachments/1711c955ae8ed0a7.txt similarity index 100% rename from allure-report/data/attachments/a22ae5e3f6546093.txt rename to allure-report/data/attachments/1711c955ae8ed0a7.txt diff --git a/allure-report/data/attachments/3ca7170537d4b92b.txt b/allure-report/data/attachments/1731dec9bd704732.txt similarity index 100% rename from allure-report/data/attachments/3ca7170537d4b92b.txt rename to allure-report/data/attachments/1731dec9bd704732.txt diff --git a/allure-report/data/attachments/114c74c53ed8174f.txt b/allure-report/data/attachments/173c8b3804a43ebd.txt similarity index 100% rename from allure-report/data/attachments/114c74c53ed8174f.txt rename to allure-report/data/attachments/173c8b3804a43ebd.txt diff --git a/allure-report/data/attachments/10c5a7daf7553683.txt b/allure-report/data/attachments/1740535c6865a94c.txt similarity index 100% rename from allure-report/data/attachments/10c5a7daf7553683.txt rename to allure-report/data/attachments/1740535c6865a94c.txt diff --git a/allure-report/data/attachments/16493fa2e59b881f.txt b/allure-report/data/attachments/177ff12f105ad4fb.txt similarity index 100% rename from allure-report/data/attachments/16493fa2e59b881f.txt rename to allure-report/data/attachments/177ff12f105ad4fb.txt diff --git a/allure-report/data/attachments/761f3173e0272363.txt b/allure-report/data/attachments/178114092f1d89bc.txt similarity index 100% rename from allure-report/data/attachments/761f3173e0272363.txt rename to allure-report/data/attachments/178114092f1d89bc.txt diff --git a/allure-report/data/attachments/723bbdd3ff9c847b.txt b/allure-report/data/attachments/17b2af932389b810.txt similarity index 100% rename from allure-report/data/attachments/723bbdd3ff9c847b.txt rename to allure-report/data/attachments/17b2af932389b810.txt diff --git a/allure-report/data/attachments/d2acfc856d6695aa.txt b/allure-report/data/attachments/186311649e77f5c8.txt similarity index 100% rename from allure-report/data/attachments/d2acfc856d6695aa.txt rename to allure-report/data/attachments/186311649e77f5c8.txt diff --git a/allure-report/data/attachments/c8353335fdb63078.txt b/allure-report/data/attachments/189cde1d0b42e48e.txt similarity index 100% rename from allure-report/data/attachments/c8353335fdb63078.txt rename to allure-report/data/attachments/189cde1d0b42e48e.txt diff --git a/allure-report/data/attachments/bb5b7ec371919319.txt b/allure-report/data/attachments/18d6da20137be417.txt similarity index 100% rename from allure-report/data/attachments/bb5b7ec371919319.txt rename to allure-report/data/attachments/18d6da20137be417.txt diff --git a/allure-report/data/attachments/67250f10970b9ec2.txt b/allure-report/data/attachments/199bb2c039260176.txt similarity index 100% rename from allure-report/data/attachments/67250f10970b9ec2.txt rename to allure-report/data/attachments/199bb2c039260176.txt diff --git a/allure-report/data/attachments/8c7dbf4edab807e9.txt b/allure-report/data/attachments/19fe4b4b294825d2.txt similarity index 100% rename from allure-report/data/attachments/8c7dbf4edab807e9.txt rename to allure-report/data/attachments/19fe4b4b294825d2.txt diff --git a/allure-report/data/attachments/25c4d55846b6e292.txt b/allure-report/data/attachments/1a54a6c3a38e3980.txt similarity index 100% rename from allure-report/data/attachments/25c4d55846b6e292.txt rename to allure-report/data/attachments/1a54a6c3a38e3980.txt diff --git a/allure-report/data/attachments/249c9a1d1088ee7f.txt b/allure-report/data/attachments/1a639fee286babca.txt similarity index 100% rename from allure-report/data/attachments/249c9a1d1088ee7f.txt rename to allure-report/data/attachments/1a639fee286babca.txt diff --git a/allure-report/data/attachments/1a1ef79b357be404.txt b/allure-report/data/attachments/1abf48c153a1a17.txt similarity index 100% rename from allure-report/data/attachments/1a1ef79b357be404.txt rename to allure-report/data/attachments/1abf48c153a1a17.txt diff --git a/allure-report/data/attachments/113db4f6bd21cad6.txt b/allure-report/data/attachments/1b39872f125fb2ef.txt similarity index 100% rename from allure-report/data/attachments/113db4f6bd21cad6.txt rename to allure-report/data/attachments/1b39872f125fb2ef.txt diff --git a/allure-report/data/attachments/ad5cb658d7b3a6f1.txt b/allure-report/data/attachments/1bbf8f89249006b7.txt similarity index 100% rename from allure-report/data/attachments/ad5cb658d7b3a6f1.txt rename to allure-report/data/attachments/1bbf8f89249006b7.txt diff --git a/allure-report/data/attachments/3c56e003ef1a2db2.txt b/allure-report/data/attachments/1d9f9656a94c5b68.txt similarity index 100% rename from allure-report/data/attachments/3c56e003ef1a2db2.txt rename to allure-report/data/attachments/1d9f9656a94c5b68.txt diff --git a/allure-report/data/attachments/adfb8d457e08492a.txt b/allure-report/data/attachments/1ded455ca81b768f.txt similarity index 100% rename from allure-report/data/attachments/adfb8d457e08492a.txt rename to allure-report/data/attachments/1ded455ca81b768f.txt diff --git a/allure-report/data/attachments/e563acaa0f865561.txt b/allure-report/data/attachments/1f0ce1b1fd5fc576.txt similarity index 100% rename from allure-report/data/attachments/e563acaa0f865561.txt rename to allure-report/data/attachments/1f0ce1b1fd5fc576.txt diff --git a/allure-report/data/attachments/ca755456b7a7b1c7.txt b/allure-report/data/attachments/1f2d499684f15ad9.txt similarity index 100% rename from allure-report/data/attachments/ca755456b7a7b1c7.txt rename to allure-report/data/attachments/1f2d499684f15ad9.txt diff --git a/allure-report/data/attachments/20413926fc466813.txt b/allure-report/data/attachments/1f432fb3d00b5421.txt similarity index 100% rename from allure-report/data/attachments/20413926fc466813.txt rename to allure-report/data/attachments/1f432fb3d00b5421.txt diff --git a/allure-report/data/attachments/3989d4323468e7bb.txt b/allure-report/data/attachments/1f751d5dc8f66594.txt similarity index 100% rename from allure-report/data/attachments/3989d4323468e7bb.txt rename to allure-report/data/attachments/1f751d5dc8f66594.txt diff --git a/allure-report/data/attachments/2e869ed25c4100a9.txt b/allure-report/data/attachments/20620e6bfba57810.txt similarity index 100% rename from allure-report/data/attachments/2e869ed25c4100a9.txt rename to allure-report/data/attachments/20620e6bfba57810.txt diff --git a/allure-report/data/attachments/572cb30872911938.txt b/allure-report/data/attachments/2096e2c2c39f7dc3.txt similarity index 100% rename from allure-report/data/attachments/572cb30872911938.txt rename to allure-report/data/attachments/2096e2c2c39f7dc3.txt diff --git a/allure-report/data/attachments/67a6b516dff28930.txt b/allure-report/data/attachments/222c482e7768a801.txt similarity index 100% rename from allure-report/data/attachments/67a6b516dff28930.txt rename to allure-report/data/attachments/222c482e7768a801.txt diff --git a/allure-report/data/attachments/96eee8345f947a69.txt b/allure-report/data/attachments/23973121b39ff210.txt similarity index 100% rename from allure-report/data/attachments/96eee8345f947a69.txt rename to allure-report/data/attachments/23973121b39ff210.txt diff --git a/allure-report/data/attachments/2a9b6a8a1ba7c33d.txt b/allure-report/data/attachments/24199b96cc9c8ec3.txt similarity index 100% rename from allure-report/data/attachments/2a9b6a8a1ba7c33d.txt rename to allure-report/data/attachments/24199b96cc9c8ec3.txt diff --git a/allure-report/data/attachments/bfa138ce1d41528.txt b/allure-report/data/attachments/24f89618104eb19b.txt similarity index 100% rename from allure-report/data/attachments/bfa138ce1d41528.txt rename to allure-report/data/attachments/24f89618104eb19b.txt diff --git a/allure-report/data/attachments/4519d4a3b473573d.txt b/allure-report/data/attachments/2519fe596c9290b5.txt similarity index 100% rename from allure-report/data/attachments/4519d4a3b473573d.txt rename to allure-report/data/attachments/2519fe596c9290b5.txt diff --git a/allure-report/data/attachments/628f2fd7fd45644d.txt b/allure-report/data/attachments/2589fdae4962b015.txt similarity index 100% rename from allure-report/data/attachments/628f2fd7fd45644d.txt rename to allure-report/data/attachments/2589fdae4962b015.txt diff --git a/allure-report/data/attachments/22a1c98a4ff92571.txt b/allure-report/data/attachments/25bffeb92bc30f28.txt similarity index 100% rename from allure-report/data/attachments/22a1c98a4ff92571.txt rename to allure-report/data/attachments/25bffeb92bc30f28.txt diff --git a/allure-report/data/attachments/baef923daaeaa1ca.txt b/allure-report/data/attachments/261dd410d8763d0c.txt similarity index 100% rename from allure-report/data/attachments/baef923daaeaa1ca.txt rename to allure-report/data/attachments/261dd410d8763d0c.txt diff --git a/allure-report/data/attachments/74ca61632d7aba21.txt b/allure-report/data/attachments/269b686a0975db0c.txt similarity index 100% rename from allure-report/data/attachments/74ca61632d7aba21.txt rename to allure-report/data/attachments/269b686a0975db0c.txt diff --git a/allure-report/data/attachments/d19c441db40a3cac.txt b/allure-report/data/attachments/26a3b25de30a9620.txt similarity index 100% rename from allure-report/data/attachments/d19c441db40a3cac.txt rename to allure-report/data/attachments/26a3b25de30a9620.txt diff --git a/allure-report/data/attachments/1720cf64cd92fe35.txt b/allure-report/data/attachments/27bed6305313af96.txt similarity index 100% rename from allure-report/data/attachments/1720cf64cd92fe35.txt rename to allure-report/data/attachments/27bed6305313af96.txt diff --git a/allure-report/data/attachments/9ad11c0bf2af69dd.txt b/allure-report/data/attachments/28132f88f00a1308.txt similarity index 100% rename from allure-report/data/attachments/9ad11c0bf2af69dd.txt rename to allure-report/data/attachments/28132f88f00a1308.txt diff --git a/allure-report/data/attachments/51125223dfac2107.txt b/allure-report/data/attachments/290c988fd03516ad.txt similarity index 100% rename from allure-report/data/attachments/51125223dfac2107.txt rename to allure-report/data/attachments/290c988fd03516ad.txt diff --git a/allure-report/data/attachments/bb19908fee85e940.txt b/allure-report/data/attachments/29d2aeece76c7fe3.txt similarity index 100% rename from allure-report/data/attachments/bb19908fee85e940.txt rename to allure-report/data/attachments/29d2aeece76c7fe3.txt diff --git a/allure-report/data/attachments/e80aece0ccab9b6b.txt b/allure-report/data/attachments/2a05a507f0806707.txt similarity index 100% rename from allure-report/data/attachments/e80aece0ccab9b6b.txt rename to allure-report/data/attachments/2a05a507f0806707.txt diff --git a/allure-report/data/attachments/33f2d7a8f9aae90.txt b/allure-report/data/attachments/2c7e8a807d9268ca.txt similarity index 100% rename from allure-report/data/attachments/33f2d7a8f9aae90.txt rename to allure-report/data/attachments/2c7e8a807d9268ca.txt diff --git a/allure-report/data/attachments/79495ef6842bbd0.txt b/allure-report/data/attachments/2dd32f5139296bc1.txt similarity index 100% rename from allure-report/data/attachments/79495ef6842bbd0.txt rename to allure-report/data/attachments/2dd32f5139296bc1.txt diff --git a/allure-report/data/attachments/461c8c952ae09079.txt b/allure-report/data/attachments/2fdd029d73a8807a.txt similarity index 100% rename from allure-report/data/attachments/461c8c952ae09079.txt rename to allure-report/data/attachments/2fdd029d73a8807a.txt diff --git a/allure-report/data/attachments/aa0f072266b0c8b.txt b/allure-report/data/attachments/301d26c401259420.txt similarity index 100% rename from allure-report/data/attachments/aa0f072266b0c8b.txt rename to allure-report/data/attachments/301d26c401259420.txt diff --git a/allure-report/data/attachments/f74825a6f4542c1b.txt b/allure-report/data/attachments/3042b984a74017cb.txt similarity index 100% rename from allure-report/data/attachments/f74825a6f4542c1b.txt rename to allure-report/data/attachments/3042b984a74017cb.txt diff --git a/allure-report/data/attachments/53524752e4f404ea.txt b/allure-report/data/attachments/308712033617631b.txt similarity index 100% rename from allure-report/data/attachments/53524752e4f404ea.txt rename to allure-report/data/attachments/308712033617631b.txt diff --git a/allure-report/data/attachments/aad817c6a7654978.txt b/allure-report/data/attachments/311050da7cc4ba1d.txt similarity index 100% rename from allure-report/data/attachments/aad817c6a7654978.txt rename to allure-report/data/attachments/311050da7cc4ba1d.txt diff --git a/allure-report/data/attachments/29a496fd36abeefa.txt b/allure-report/data/attachments/31feec1cbe8e86eb.txt similarity index 100% rename from allure-report/data/attachments/29a496fd36abeefa.txt rename to allure-report/data/attachments/31feec1cbe8e86eb.txt diff --git a/allure-report/data/attachments/18e589c7521ffb38.txt b/allure-report/data/attachments/3253e81015ef9292.txt similarity index 100% rename from allure-report/data/attachments/18e589c7521ffb38.txt rename to allure-report/data/attachments/3253e81015ef9292.txt diff --git a/allure-report/data/attachments/2d2ee55342013cf8.txt b/allure-report/data/attachments/330cef54d490c73e.txt similarity index 100% rename from allure-report/data/attachments/2d2ee55342013cf8.txt rename to allure-report/data/attachments/330cef54d490c73e.txt diff --git a/allure-report/data/attachments/4a6abb90a321cb9c.txt b/allure-report/data/attachments/3399e5458489501f.txt similarity index 100% rename from allure-report/data/attachments/4a6abb90a321cb9c.txt rename to allure-report/data/attachments/3399e5458489501f.txt diff --git a/allure-report/data/attachments/b4b3b9029fd263e4.txt b/allure-report/data/attachments/348342fa3ca36cd4.txt similarity index 100% rename from allure-report/data/attachments/b4b3b9029fd263e4.txt rename to allure-report/data/attachments/348342fa3ca36cd4.txt diff --git a/allure-report/data/attachments/b50e795eadf52633.txt b/allure-report/data/attachments/34970ab91dd4eb6c.txt similarity index 100% rename from allure-report/data/attachments/b50e795eadf52633.txt rename to allure-report/data/attachments/34970ab91dd4eb6c.txt diff --git a/allure-report/data/attachments/38a17c1a51c46902.txt b/allure-report/data/attachments/3594eabb545be088.txt similarity index 100% rename from allure-report/data/attachments/38a17c1a51c46902.txt rename to allure-report/data/attachments/3594eabb545be088.txt diff --git a/allure-report/data/attachments/b3933c8513b435f2.txt b/allure-report/data/attachments/3608f48d89e26964.txt similarity index 100% rename from allure-report/data/attachments/b3933c8513b435f2.txt rename to allure-report/data/attachments/3608f48d89e26964.txt diff --git a/allure-report/data/attachments/1a80ac27e17ecc55.txt b/allure-report/data/attachments/36d68ec5646bcd8f.txt similarity index 100% rename from allure-report/data/attachments/1a80ac27e17ecc55.txt rename to allure-report/data/attachments/36d68ec5646bcd8f.txt diff --git a/allure-report/data/attachments/48d50f93d41108b9.txt b/allure-report/data/attachments/36e3a300e20ebc68.txt similarity index 100% rename from allure-report/data/attachments/48d50f93d41108b9.txt rename to allure-report/data/attachments/36e3a300e20ebc68.txt diff --git a/allure-report/data/attachments/ce9018a625502a4f.txt b/allure-report/data/attachments/36ecb19439af20bd.txt similarity index 100% rename from allure-report/data/attachments/ce9018a625502a4f.txt rename to allure-report/data/attachments/36ecb19439af20bd.txt diff --git a/allure-report/data/attachments/85584e5ea4131ab.txt b/allure-report/data/attachments/3770d294f14361b7.txt similarity index 100% rename from allure-report/data/attachments/85584e5ea4131ab.txt rename to allure-report/data/attachments/3770d294f14361b7.txt diff --git a/allure-report/data/attachments/6da8b20d7eb3affa.txt b/allure-report/data/attachments/37cb2e943dd3d9fa.txt similarity index 100% rename from allure-report/data/attachments/6da8b20d7eb3affa.txt rename to allure-report/data/attachments/37cb2e943dd3d9fa.txt diff --git a/allure-report/data/attachments/402ca4d0fca525c3.txt b/allure-report/data/attachments/37e9edade389e962.txt similarity index 100% rename from allure-report/data/attachments/402ca4d0fca525c3.txt rename to allure-report/data/attachments/37e9edade389e962.txt diff --git a/allure-report/data/attachments/1a416aa1f8f49132.txt b/allure-report/data/attachments/38571528b67e0e01.txt similarity index 100% rename from allure-report/data/attachments/1a416aa1f8f49132.txt rename to allure-report/data/attachments/38571528b67e0e01.txt diff --git a/allure-report/data/attachments/5b3d8d390aff60c1.txt b/allure-report/data/attachments/394478f192e8a5de.txt similarity index 100% rename from allure-report/data/attachments/5b3d8d390aff60c1.txt rename to allure-report/data/attachments/394478f192e8a5de.txt diff --git a/allure-report/data/attachments/80387d9cf50add05.txt b/allure-report/data/attachments/39cdb5ecef1e6852.txt similarity index 100% rename from allure-report/data/attachments/80387d9cf50add05.txt rename to allure-report/data/attachments/39cdb5ecef1e6852.txt diff --git a/allure-report/data/attachments/5beccad181be3c1.txt b/allure-report/data/attachments/39d04d48da97fae9.txt similarity index 100% rename from allure-report/data/attachments/5beccad181be3c1.txt rename to allure-report/data/attachments/39d04d48da97fae9.txt diff --git a/allure-report/data/attachments/777a522aaa0b36d6.txt b/allure-report/data/attachments/3a7734f8c672bad4.txt similarity index 100% rename from allure-report/data/attachments/777a522aaa0b36d6.txt rename to allure-report/data/attachments/3a7734f8c672bad4.txt diff --git a/allure-report/data/attachments/eb842e833e18e0a2.txt b/allure-report/data/attachments/3b3cd319fcba15f6.txt similarity index 100% rename from allure-report/data/attachments/eb842e833e18e0a2.txt rename to allure-report/data/attachments/3b3cd319fcba15f6.txt diff --git a/allure-report/data/attachments/8ec04fa99fe20225.txt b/allure-report/data/attachments/3bb61b0a55d4385d.txt similarity index 100% rename from allure-report/data/attachments/8ec04fa99fe20225.txt rename to allure-report/data/attachments/3bb61b0a55d4385d.txt diff --git a/allure-report/data/attachments/78dec26e63ca72b.txt b/allure-report/data/attachments/3cae79604aa7933a.txt similarity index 100% rename from allure-report/data/attachments/78dec26e63ca72b.txt rename to allure-report/data/attachments/3cae79604aa7933a.txt diff --git a/allure-report/data/attachments/61a0c4c44acfdb4d.txt b/allure-report/data/attachments/3cfc143b96c54cf6.txt similarity index 100% rename from allure-report/data/attachments/61a0c4c44acfdb4d.txt rename to allure-report/data/attachments/3cfc143b96c54cf6.txt diff --git a/allure-report/data/attachments/70c3d96b077c7c36.txt b/allure-report/data/attachments/3e07263d3e995602.txt similarity index 100% rename from allure-report/data/attachments/70c3d96b077c7c36.txt rename to allure-report/data/attachments/3e07263d3e995602.txt diff --git a/allure-report/data/attachments/37493fb00e3c01f4.txt b/allure-report/data/attachments/3ecf2d6ad02962e9.txt similarity index 100% rename from allure-report/data/attachments/37493fb00e3c01f4.txt rename to allure-report/data/attachments/3ecf2d6ad02962e9.txt diff --git a/allure-report/data/attachments/6e5f2c0cf3da9e17.txt b/allure-report/data/attachments/3f0b8846373b1989.txt similarity index 100% rename from allure-report/data/attachments/6e5f2c0cf3da9e17.txt rename to allure-report/data/attachments/3f0b8846373b1989.txt diff --git a/allure-report/data/attachments/a048397ca4ccbb02.txt b/allure-report/data/attachments/3fc3f69bfdd6ff9f.txt similarity index 100% rename from allure-report/data/attachments/a048397ca4ccbb02.txt rename to allure-report/data/attachments/3fc3f69bfdd6ff9f.txt diff --git a/allure-report/data/attachments/c91447e2ab5b5752.txt b/allure-report/data/attachments/425763916f5e21f0.txt similarity index 100% rename from allure-report/data/attachments/c91447e2ab5b5752.txt rename to allure-report/data/attachments/425763916f5e21f0.txt diff --git a/allure-report/data/attachments/cd12a6124ae0828b.txt b/allure-report/data/attachments/4279fe2563b48bb.txt similarity index 100% rename from allure-report/data/attachments/cd12a6124ae0828b.txt rename to allure-report/data/attachments/4279fe2563b48bb.txt diff --git a/allure-report/data/attachments/409128bc00470776.txt b/allure-report/data/attachments/435e1e4d04469bf3.txt similarity index 100% rename from allure-report/data/attachments/409128bc00470776.txt rename to allure-report/data/attachments/435e1e4d04469bf3.txt diff --git a/allure-report/data/attachments/1a418dd5b9f09793.txt b/allure-report/data/attachments/444e3c5fd77d103.txt similarity index 100% rename from allure-report/data/attachments/1a418dd5b9f09793.txt rename to allure-report/data/attachments/444e3c5fd77d103.txt diff --git a/allure-report/data/attachments/a0aae731f70e5cc0.txt b/allure-report/data/attachments/44f2331d72fdaf9f.txt similarity index 100% rename from allure-report/data/attachments/a0aae731f70e5cc0.txt rename to allure-report/data/attachments/44f2331d72fdaf9f.txt diff --git a/allure-report/data/attachments/1a238f13b61d4440.txt b/allure-report/data/attachments/468a57056683ca0e.txt similarity index 100% rename from allure-report/data/attachments/1a238f13b61d4440.txt rename to allure-report/data/attachments/468a57056683ca0e.txt diff --git a/allure-report/data/attachments/b5edf03f6f69fd7.txt b/allure-report/data/attachments/46d017d45a55c05d.txt similarity index 100% rename from allure-report/data/attachments/b5edf03f6f69fd7.txt rename to allure-report/data/attachments/46d017d45a55c05d.txt diff --git a/allure-report/data/attachments/c678f64458ff79c1.txt b/allure-report/data/attachments/4718f5d8ec029744.txt similarity index 100% rename from allure-report/data/attachments/c678f64458ff79c1.txt rename to allure-report/data/attachments/4718f5d8ec029744.txt diff --git a/allure-report/data/attachments/b965bcb2e6dc29da.txt b/allure-report/data/attachments/479ed89d4ea66fbb.txt similarity index 100% rename from allure-report/data/attachments/b965bcb2e6dc29da.txt rename to allure-report/data/attachments/479ed89d4ea66fbb.txt diff --git a/allure-report/data/attachments/7e868f0d93022512.txt b/allure-report/data/attachments/47f787d5d2d88cb3.txt similarity index 100% rename from allure-report/data/attachments/7e868f0d93022512.txt rename to allure-report/data/attachments/47f787d5d2d88cb3.txt diff --git a/allure-report/data/attachments/9a6a869c56ca7757.txt b/allure-report/data/attachments/48efcf6226950113.txt similarity index 100% rename from allure-report/data/attachments/9a6a869c56ca7757.txt rename to allure-report/data/attachments/48efcf6226950113.txt diff --git a/allure-report/data/attachments/142bd0c9522a1b66.txt b/allure-report/data/attachments/49113f874a139db1.txt similarity index 100% rename from allure-report/data/attachments/142bd0c9522a1b66.txt rename to allure-report/data/attachments/49113f874a139db1.txt diff --git a/allure-report/data/attachments/41d72e951bcc6869.txt b/allure-report/data/attachments/491334107dd5238e.txt similarity index 100% rename from allure-report/data/attachments/41d72e951bcc6869.txt rename to allure-report/data/attachments/491334107dd5238e.txt diff --git a/allure-report/data/attachments/262bbed0c4f1b31e.txt b/allure-report/data/attachments/496a8fc7c085caf4.txt similarity index 100% rename from allure-report/data/attachments/262bbed0c4f1b31e.txt rename to allure-report/data/attachments/496a8fc7c085caf4.txt diff --git a/allure-report/data/attachments/69eb503d0999422e.txt b/allure-report/data/attachments/49e08a4f979422ca.txt similarity index 100% rename from allure-report/data/attachments/69eb503d0999422e.txt rename to allure-report/data/attachments/49e08a4f979422ca.txt diff --git a/allure-report/data/attachments/688ad3759760cab8.txt b/allure-report/data/attachments/4ae64cfa18a7fe16.txt similarity index 100% rename from allure-report/data/attachments/688ad3759760cab8.txt rename to allure-report/data/attachments/4ae64cfa18a7fe16.txt diff --git a/allure-report/data/attachments/593c0c1fd5b8ed77.txt b/allure-report/data/attachments/4b7e6475d8bd7c13.txt similarity index 100% rename from allure-report/data/attachments/593c0c1fd5b8ed77.txt rename to allure-report/data/attachments/4b7e6475d8bd7c13.txt diff --git a/allure-report/data/attachments/395fe2fe4ac3b196.txt b/allure-report/data/attachments/4bab5f3bdd559aa2.txt similarity index 100% rename from allure-report/data/attachments/395fe2fe4ac3b196.txt rename to allure-report/data/attachments/4bab5f3bdd559aa2.txt diff --git a/allure-report/data/attachments/95ff64e2c1a83a10.txt b/allure-report/data/attachments/4bd7ac0fc20fb6a1.txt similarity index 100% rename from allure-report/data/attachments/95ff64e2c1a83a10.txt rename to allure-report/data/attachments/4bd7ac0fc20fb6a1.txt diff --git a/allure-report/data/attachments/5d807bd45470dc9b.txt b/allure-report/data/attachments/4c101c06530a2e9e.txt similarity index 100% rename from allure-report/data/attachments/5d807bd45470dc9b.txt rename to allure-report/data/attachments/4c101c06530a2e9e.txt diff --git a/allure-report/data/attachments/d0b51033cb9da8c3.txt b/allure-report/data/attachments/4cb1b482ef5803db.txt similarity index 100% rename from allure-report/data/attachments/d0b51033cb9da8c3.txt rename to allure-report/data/attachments/4cb1b482ef5803db.txt diff --git a/allure-report/data/attachments/9e259e1fbcfa5f37.txt b/allure-report/data/attachments/4dd82faaba573e68.txt similarity index 100% rename from allure-report/data/attachments/9e259e1fbcfa5f37.txt rename to allure-report/data/attachments/4dd82faaba573e68.txt diff --git a/allure-report/data/attachments/c5e4c41a6f3733c3.txt b/allure-report/data/attachments/4de55b4ae1f39108.txt similarity index 100% rename from allure-report/data/attachments/c5e4c41a6f3733c3.txt rename to allure-report/data/attachments/4de55b4ae1f39108.txt diff --git a/allure-report/data/attachments/b8231a3e84d54eef.txt b/allure-report/data/attachments/4eeb339282cdbad1.txt similarity index 100% rename from allure-report/data/attachments/b8231a3e84d54eef.txt rename to allure-report/data/attachments/4eeb339282cdbad1.txt diff --git a/allure-report/data/attachments/46bb9498c70949de.txt b/allure-report/data/attachments/50169eac5bf8084a.txt similarity index 100% rename from allure-report/data/attachments/46bb9498c70949de.txt rename to allure-report/data/attachments/50169eac5bf8084a.txt diff --git a/allure-report/data/attachments/300059081fd8f1bb.txt b/allure-report/data/attachments/50e06d17e1c8d051.txt similarity index 100% rename from allure-report/data/attachments/300059081fd8f1bb.txt rename to allure-report/data/attachments/50e06d17e1c8d051.txt diff --git a/allure-report/data/attachments/79e843dd93b69bc1.txt b/allure-report/data/attachments/51a20e306213f50c.txt similarity index 100% rename from allure-report/data/attachments/79e843dd93b69bc1.txt rename to allure-report/data/attachments/51a20e306213f50c.txt diff --git a/allure-report/data/attachments/fdeff84d2ee8d5a7.txt b/allure-report/data/attachments/51e235954e2b24e9.txt similarity index 100% rename from allure-report/data/attachments/fdeff84d2ee8d5a7.txt rename to allure-report/data/attachments/51e235954e2b24e9.txt diff --git a/allure-report/data/attachments/422dba3ada60a54e.txt b/allure-report/data/attachments/5442f35428b86593.txt similarity index 100% rename from allure-report/data/attachments/422dba3ada60a54e.txt rename to allure-report/data/attachments/5442f35428b86593.txt diff --git a/allure-report/data/attachments/57e5598cd8b8ad42.txt b/allure-report/data/attachments/551e85d4261ef859.txt similarity index 100% rename from allure-report/data/attachments/57e5598cd8b8ad42.txt rename to allure-report/data/attachments/551e85d4261ef859.txt diff --git a/allure-report/data/attachments/a05108cbbea40a77.txt b/allure-report/data/attachments/5538d98488e22a1.txt similarity index 100% rename from allure-report/data/attachments/a05108cbbea40a77.txt rename to allure-report/data/attachments/5538d98488e22a1.txt diff --git a/allure-report/data/attachments/75c4275b899037f8.txt b/allure-report/data/attachments/559adfb16322e47a.txt similarity index 100% rename from allure-report/data/attachments/75c4275b899037f8.txt rename to allure-report/data/attachments/559adfb16322e47a.txt diff --git a/allure-report/data/attachments/19eb43b014d8e007.txt b/allure-report/data/attachments/566cb1395d2623ee.txt similarity index 100% rename from allure-report/data/attachments/19eb43b014d8e007.txt rename to allure-report/data/attachments/566cb1395d2623ee.txt diff --git a/allure-report/data/attachments/7aad212f16ce4ea2.txt b/allure-report/data/attachments/599f4bf8dc375f2f.txt similarity index 100% rename from allure-report/data/attachments/7aad212f16ce4ea2.txt rename to allure-report/data/attachments/599f4bf8dc375f2f.txt diff --git a/allure-report/data/attachments/9d4907fb8e8c491a.txt b/allure-report/data/attachments/5a674ed3663720ba.txt similarity index 100% rename from allure-report/data/attachments/9d4907fb8e8c491a.txt rename to allure-report/data/attachments/5a674ed3663720ba.txt diff --git a/allure-report/data/attachments/3b422b59c38b206.txt b/allure-report/data/attachments/5aca5b8e45147f1d.txt similarity index 100% rename from allure-report/data/attachments/3b422b59c38b206.txt rename to allure-report/data/attachments/5aca5b8e45147f1d.txt diff --git a/allure-report/data/attachments/3a5fe84144db5541.txt b/allure-report/data/attachments/5ae64153eb7d8fd5.txt similarity index 100% rename from allure-report/data/attachments/3a5fe84144db5541.txt rename to allure-report/data/attachments/5ae64153eb7d8fd5.txt diff --git a/allure-report/data/attachments/6f22d94f06ac3a09.txt b/allure-report/data/attachments/5bd79911afafb617.txt similarity index 100% rename from allure-report/data/attachments/6f22d94f06ac3a09.txt rename to allure-report/data/attachments/5bd79911afafb617.txt diff --git a/allure-report/data/attachments/5ba35f69345b3378.txt b/allure-report/data/attachments/5c46b88a061332b3.txt similarity index 100% rename from allure-report/data/attachments/5ba35f69345b3378.txt rename to allure-report/data/attachments/5c46b88a061332b3.txt diff --git a/allure-report/data/attachments/9fa38c981635713c.txt b/allure-report/data/attachments/5e736eac717d48b8.txt similarity index 100% rename from allure-report/data/attachments/9fa38c981635713c.txt rename to allure-report/data/attachments/5e736eac717d48b8.txt diff --git a/allure-report/data/attachments/ebe19d7db75ba582.txt b/allure-report/data/attachments/5f6fe8d21ab696a3.txt similarity index 100% rename from allure-report/data/attachments/ebe19d7db75ba582.txt rename to allure-report/data/attachments/5f6fe8d21ab696a3.txt diff --git a/allure-report/data/attachments/34df9b6773cb0004.txt b/allure-report/data/attachments/604a50ef60eddbca.txt similarity index 100% rename from allure-report/data/attachments/34df9b6773cb0004.txt rename to allure-report/data/attachments/604a50ef60eddbca.txt diff --git a/allure-report/data/attachments/4d5c4bbf86727665.txt b/allure-report/data/attachments/60551f07eabe2ff9.txt similarity index 100% rename from allure-report/data/attachments/4d5c4bbf86727665.txt rename to allure-report/data/attachments/60551f07eabe2ff9.txt diff --git a/allure-report/data/attachments/afd9bf5ba31b7f2c.txt b/allure-report/data/attachments/60ceec260ccbe12f.txt similarity index 100% rename from allure-report/data/attachments/afd9bf5ba31b7f2c.txt rename to allure-report/data/attachments/60ceec260ccbe12f.txt diff --git a/allure-report/data/attachments/d015bd8e99b083ac.txt b/allure-report/data/attachments/61278101606180d8.txt similarity index 100% rename from allure-report/data/attachments/d015bd8e99b083ac.txt rename to allure-report/data/attachments/61278101606180d8.txt diff --git a/allure-report/data/attachments/17c76024ab075e9a.txt b/allure-report/data/attachments/6148a5719472274d.txt similarity index 100% rename from allure-report/data/attachments/17c76024ab075e9a.txt rename to allure-report/data/attachments/6148a5719472274d.txt diff --git a/allure-report/data/attachments/5a6a1d1be82c27c9.txt b/allure-report/data/attachments/61c3ba5a703e8965.txt similarity index 100% rename from allure-report/data/attachments/5a6a1d1be82c27c9.txt rename to allure-report/data/attachments/61c3ba5a703e8965.txt diff --git a/allure-report/data/attachments/4abc13d212d8a981.txt b/allure-report/data/attachments/622422493d650fdf.txt similarity index 100% rename from allure-report/data/attachments/4abc13d212d8a981.txt rename to allure-report/data/attachments/622422493d650fdf.txt diff --git a/allure-report/data/attachments/be12a7ae2303d05.txt b/allure-report/data/attachments/6369af4634ea6437.txt similarity index 100% rename from allure-report/data/attachments/be12a7ae2303d05.txt rename to allure-report/data/attachments/6369af4634ea6437.txt diff --git a/allure-report/data/attachments/6dd7f32db32388b4.txt b/allure-report/data/attachments/64799626cd40a47b.txt similarity index 100% rename from allure-report/data/attachments/6dd7f32db32388b4.txt rename to allure-report/data/attachments/64799626cd40a47b.txt diff --git a/allure-report/data/attachments/66a01ccf7a5d5fb.txt b/allure-report/data/attachments/65939308dfa4b454.txt similarity index 100% rename from allure-report/data/attachments/66a01ccf7a5d5fb.txt rename to allure-report/data/attachments/65939308dfa4b454.txt diff --git a/allure-report/data/attachments/edfc621ad66d7630.txt b/allure-report/data/attachments/65be7c61ca459627.txt similarity index 100% rename from allure-report/data/attachments/edfc621ad66d7630.txt rename to allure-report/data/attachments/65be7c61ca459627.txt diff --git a/allure-report/data/attachments/52487ab63cfc7fc2.txt b/allure-report/data/attachments/6724f660007b6f8f.txt similarity index 100% rename from allure-report/data/attachments/52487ab63cfc7fc2.txt rename to allure-report/data/attachments/6724f660007b6f8f.txt diff --git a/allure-report/data/attachments/792a133ebed89ed0.txt b/allure-report/data/attachments/68019be75248ce7a.txt similarity index 100% rename from allure-report/data/attachments/792a133ebed89ed0.txt rename to allure-report/data/attachments/68019be75248ce7a.txt diff --git a/allure-report/data/attachments/b9d1131297f0da2f.txt b/allure-report/data/attachments/68907a6eac7b7e79.txt similarity index 100% rename from allure-report/data/attachments/b9d1131297f0da2f.txt rename to allure-report/data/attachments/68907a6eac7b7e79.txt diff --git a/allure-report/data/attachments/bf32cb10b99852f.txt b/allure-report/data/attachments/69a85253be572104.txt similarity index 100% rename from allure-report/data/attachments/bf32cb10b99852f.txt rename to allure-report/data/attachments/69a85253be572104.txt diff --git a/allure-report/data/attachments/82b07dc960eb0dfb.txt b/allure-report/data/attachments/69ca1dfc95141b1.txt similarity index 100% rename from allure-report/data/attachments/82b07dc960eb0dfb.txt rename to allure-report/data/attachments/69ca1dfc95141b1.txt diff --git a/allure-report/data/attachments/56bfa93ef6d7d13e.txt b/allure-report/data/attachments/6a89bd43066f4143.txt similarity index 100% rename from allure-report/data/attachments/56bfa93ef6d7d13e.txt rename to allure-report/data/attachments/6a89bd43066f4143.txt diff --git a/allure-report/data/attachments/bbdde990c6eec147.txt b/allure-report/data/attachments/6aac0d6477d82d49.txt similarity index 100% rename from allure-report/data/attachments/bbdde990c6eec147.txt rename to allure-report/data/attachments/6aac0d6477d82d49.txt diff --git a/allure-report/data/attachments/658b23666826b836.txt b/allure-report/data/attachments/6b06d8bb1f0d8ae7.txt similarity index 100% rename from allure-report/data/attachments/658b23666826b836.txt rename to allure-report/data/attachments/6b06d8bb1f0d8ae7.txt diff --git a/allure-report/data/attachments/f242bfa987012064.txt b/allure-report/data/attachments/6b26647644a9011f.txt similarity index 100% rename from allure-report/data/attachments/f242bfa987012064.txt rename to allure-report/data/attachments/6b26647644a9011f.txt diff --git a/allure-report/data/attachments/2d914c949df5ab84.txt b/allure-report/data/attachments/6c8ba92b05ceb5be.txt similarity index 100% rename from allure-report/data/attachments/2d914c949df5ab84.txt rename to allure-report/data/attachments/6c8ba92b05ceb5be.txt diff --git a/allure-report/data/attachments/9ef446de5bdc3b2.txt b/allure-report/data/attachments/6e533a6d7b553e50.txt similarity index 100% rename from allure-report/data/attachments/9ef446de5bdc3b2.txt rename to allure-report/data/attachments/6e533a6d7b553e50.txt diff --git a/allure-report/data/attachments/2d6b522e7a7ff120.txt b/allure-report/data/attachments/6e652aa73f38cf38.txt similarity index 100% rename from allure-report/data/attachments/2d6b522e7a7ff120.txt rename to allure-report/data/attachments/6e652aa73f38cf38.txt diff --git a/allure-report/data/attachments/1ae03ec55e1d110.txt b/allure-report/data/attachments/6f68f7e9f588442e.txt similarity index 100% rename from allure-report/data/attachments/1ae03ec55e1d110.txt rename to allure-report/data/attachments/6f68f7e9f588442e.txt diff --git a/allure-report/data/attachments/d25c0f30c04fe1a7.txt b/allure-report/data/attachments/70549112d1201a37.txt similarity index 100% rename from allure-report/data/attachments/d25c0f30c04fe1a7.txt rename to allure-report/data/attachments/70549112d1201a37.txt diff --git a/allure-report/data/attachments/751c423a8c519ee0.txt b/allure-report/data/attachments/7059a7f2ea4f1d21.txt similarity index 100% rename from allure-report/data/attachments/751c423a8c519ee0.txt rename to allure-report/data/attachments/7059a7f2ea4f1d21.txt diff --git a/allure-report/data/attachments/636289116dbc88a1.txt b/allure-report/data/attachments/712c159a049ff459.txt similarity index 100% rename from allure-report/data/attachments/636289116dbc88a1.txt rename to allure-report/data/attachments/712c159a049ff459.txt diff --git a/allure-report/data/attachments/518fb893ba3ae3ec.txt b/allure-report/data/attachments/71fc07a67416a0d6.txt similarity index 100% rename from allure-report/data/attachments/518fb893ba3ae3ec.txt rename to allure-report/data/attachments/71fc07a67416a0d6.txt diff --git a/allure-report/data/attachments/77d89c40af0bf20.txt b/allure-report/data/attachments/72c5ae89672fcecc.txt similarity index 100% rename from allure-report/data/attachments/77d89c40af0bf20.txt rename to allure-report/data/attachments/72c5ae89672fcecc.txt diff --git a/allure-report/data/attachments/d9deb17ebdcc9231.txt b/allure-report/data/attachments/7324bd79d75b1976.txt similarity index 100% rename from allure-report/data/attachments/d9deb17ebdcc9231.txt rename to allure-report/data/attachments/7324bd79d75b1976.txt diff --git a/allure-report/data/attachments/1dd67237b9ff3f68.txt b/allure-report/data/attachments/7379dff7e25cb0a5.txt similarity index 100% rename from allure-report/data/attachments/1dd67237b9ff3f68.txt rename to allure-report/data/attachments/7379dff7e25cb0a5.txt diff --git a/allure-report/data/attachments/5a9323196c3e301a.txt b/allure-report/data/attachments/73dfd6fcf3f0a2ae.txt similarity index 100% rename from allure-report/data/attachments/5a9323196c3e301a.txt rename to allure-report/data/attachments/73dfd6fcf3f0a2ae.txt diff --git a/allure-report/data/attachments/af3aa1dfbb9be751.txt b/allure-report/data/attachments/73e1a08147f0ff00.txt similarity index 100% rename from allure-report/data/attachments/af3aa1dfbb9be751.txt rename to allure-report/data/attachments/73e1a08147f0ff00.txt diff --git a/allure-report/data/attachments/ac4bcaa809c6d1fd.txt b/allure-report/data/attachments/7425734ad14179e4.txt similarity index 100% rename from allure-report/data/attachments/ac4bcaa809c6d1fd.txt rename to allure-report/data/attachments/7425734ad14179e4.txt diff --git a/allure-report/data/attachments/e7d480a17e666525.txt b/allure-report/data/attachments/74fd4cb3a0d16df5.txt similarity index 100% rename from allure-report/data/attachments/e7d480a17e666525.txt rename to allure-report/data/attachments/74fd4cb3a0d16df5.txt diff --git a/allure-report/data/attachments/9bb6819321100dff.txt b/allure-report/data/attachments/7548d350c45f54f6.txt similarity index 100% rename from allure-report/data/attachments/9bb6819321100dff.txt rename to allure-report/data/attachments/7548d350c45f54f6.txt diff --git a/allure-report/data/attachments/4f667b9e1153821e.txt b/allure-report/data/attachments/757a12dc566d3a04.txt similarity index 100% rename from allure-report/data/attachments/4f667b9e1153821e.txt rename to allure-report/data/attachments/757a12dc566d3a04.txt diff --git a/allure-report/data/attachments/20ec3b37f02414c6.txt b/allure-report/data/attachments/761ccb0eac4691eb.txt similarity index 100% rename from allure-report/data/attachments/20ec3b37f02414c6.txt rename to allure-report/data/attachments/761ccb0eac4691eb.txt diff --git a/allure-report/data/attachments/917768a471c3713a.txt b/allure-report/data/attachments/768a2542510e9424.txt similarity index 100% rename from allure-report/data/attachments/917768a471c3713a.txt rename to allure-report/data/attachments/768a2542510e9424.txt diff --git a/allure-report/data/attachments/ab818dba8f721c82.txt b/allure-report/data/attachments/778d3397f8515034.txt similarity index 100% rename from allure-report/data/attachments/ab818dba8f721c82.txt rename to allure-report/data/attachments/778d3397f8515034.txt diff --git a/allure-report/data/attachments/603967bf708ac2d5.txt b/allure-report/data/attachments/78536cfa8705ace3.txt similarity index 100% rename from allure-report/data/attachments/603967bf708ac2d5.txt rename to allure-report/data/attachments/78536cfa8705ace3.txt diff --git a/allure-report/data/attachments/76ccf3919bc3e5ff.txt b/allure-report/data/attachments/788d307008b11df5.txt similarity index 100% rename from allure-report/data/attachments/76ccf3919bc3e5ff.txt rename to allure-report/data/attachments/788d307008b11df5.txt diff --git a/allure-report/data/attachments/b3ed0c860ff49ada.txt b/allure-report/data/attachments/78b67cc840d0f4a8.txt similarity index 100% rename from allure-report/data/attachments/b3ed0c860ff49ada.txt rename to allure-report/data/attachments/78b67cc840d0f4a8.txt diff --git a/allure-report/data/attachments/f64884da2dda6a3c.txt b/allure-report/data/attachments/78ccb02d90c15e25.txt similarity index 100% rename from allure-report/data/attachments/f64884da2dda6a3c.txt rename to allure-report/data/attachments/78ccb02d90c15e25.txt diff --git a/allure-report/data/attachments/fab45acdd775eb62.txt b/allure-report/data/attachments/7a6a4e0267245cc3.txt similarity index 100% rename from allure-report/data/attachments/fab45acdd775eb62.txt rename to allure-report/data/attachments/7a6a4e0267245cc3.txt diff --git a/allure-report/data/attachments/e7956391f1917fb4.txt b/allure-report/data/attachments/7b9e000b6e8b6a60.txt similarity index 100% rename from allure-report/data/attachments/e7956391f1917fb4.txt rename to allure-report/data/attachments/7b9e000b6e8b6a60.txt diff --git a/allure-report/data/attachments/d97724b3c30f749b.txt b/allure-report/data/attachments/7bfcd285de663163.txt similarity index 100% rename from allure-report/data/attachments/d97724b3c30f749b.txt rename to allure-report/data/attachments/7bfcd285de663163.txt diff --git a/allure-report/data/attachments/a41b5cadf707dc0f.txt b/allure-report/data/attachments/7c4d33961ba9ecde.txt similarity index 100% rename from allure-report/data/attachments/a41b5cadf707dc0f.txt rename to allure-report/data/attachments/7c4d33961ba9ecde.txt diff --git a/allure-report/data/attachments/87531b32bbe9613e.txt b/allure-report/data/attachments/7cbc8ebd65fb8481.txt similarity index 100% rename from allure-report/data/attachments/87531b32bbe9613e.txt rename to allure-report/data/attachments/7cbc8ebd65fb8481.txt diff --git a/allure-report/data/attachments/bdc74086212add1b.txt b/allure-report/data/attachments/7ce02846f9ac9e3d.txt similarity index 100% rename from allure-report/data/attachments/bdc74086212add1b.txt rename to allure-report/data/attachments/7ce02846f9ac9e3d.txt diff --git a/allure-report/data/attachments/3db52e49cbd26e06.txt b/allure-report/data/attachments/7d82c31fb2485e49.txt similarity index 100% rename from allure-report/data/attachments/3db52e49cbd26e06.txt rename to allure-report/data/attachments/7d82c31fb2485e49.txt diff --git a/allure-report/data/attachments/50518c3041d69a65.txt b/allure-report/data/attachments/7e6e0f3580253245.txt similarity index 100% rename from allure-report/data/attachments/50518c3041d69a65.txt rename to allure-report/data/attachments/7e6e0f3580253245.txt diff --git a/allure-report/data/attachments/889d21b9a71df26a.txt b/allure-report/data/attachments/7f097b27d301b075.txt similarity index 100% rename from allure-report/data/attachments/889d21b9a71df26a.txt rename to allure-report/data/attachments/7f097b27d301b075.txt diff --git a/allure-report/data/attachments/e0896f1244645b9.txt b/allure-report/data/attachments/7f1e6261fe55f12.txt similarity index 100% rename from allure-report/data/attachments/e0896f1244645b9.txt rename to allure-report/data/attachments/7f1e6261fe55f12.txt diff --git a/allure-report/data/attachments/b953c5b7701746a6.txt b/allure-report/data/attachments/7f5a59d26508f55d.txt similarity index 100% rename from allure-report/data/attachments/b953c5b7701746a6.txt rename to allure-report/data/attachments/7f5a59d26508f55d.txt diff --git a/allure-report/data/attachments/c1042cf050bb287f.txt b/allure-report/data/attachments/7f8244a44f0672b6.txt similarity index 100% rename from allure-report/data/attachments/c1042cf050bb287f.txt rename to allure-report/data/attachments/7f8244a44f0672b6.txt diff --git a/allure-report/data/attachments/1f77a5204398ee70.txt b/allure-report/data/attachments/817385884ec20713.txt similarity index 100% rename from allure-report/data/attachments/1f77a5204398ee70.txt rename to allure-report/data/attachments/817385884ec20713.txt diff --git a/allure-report/data/attachments/2e5c8918aed39603.txt b/allure-report/data/attachments/8276c421e6a39adf.txt similarity index 100% rename from allure-report/data/attachments/2e5c8918aed39603.txt rename to allure-report/data/attachments/8276c421e6a39adf.txt diff --git a/allure-report/data/attachments/36bee03d6cf0b073.txt b/allure-report/data/attachments/8333a44527f8bcd6.txt similarity index 100% rename from allure-report/data/attachments/36bee03d6cf0b073.txt rename to allure-report/data/attachments/8333a44527f8bcd6.txt diff --git a/allure-report/data/attachments/e71976337c3f0f2c.txt b/allure-report/data/attachments/833d260c3e69ae73.txt similarity index 100% rename from allure-report/data/attachments/e71976337c3f0f2c.txt rename to allure-report/data/attachments/833d260c3e69ae73.txt diff --git a/allure-report/data/attachments/9fc84a1435124a1a.txt b/allure-report/data/attachments/835d7d8f35896535.txt similarity index 100% rename from allure-report/data/attachments/9fc84a1435124a1a.txt rename to allure-report/data/attachments/835d7d8f35896535.txt diff --git a/allure-report/data/attachments/a541c471a2ff7ad0.txt b/allure-report/data/attachments/843a9b33796b69ab.txt similarity index 100% rename from allure-report/data/attachments/a541c471a2ff7ad0.txt rename to allure-report/data/attachments/843a9b33796b69ab.txt diff --git a/allure-report/data/attachments/cd4290234370c8e2.txt b/allure-report/data/attachments/8474eb0f72326e17.txt similarity index 100% rename from allure-report/data/attachments/cd4290234370c8e2.txt rename to allure-report/data/attachments/8474eb0f72326e17.txt diff --git a/allure-report/data/attachments/86763b8490ff9e1a.txt b/allure-report/data/attachments/87d604abdd1034ad.txt similarity index 100% rename from allure-report/data/attachments/86763b8490ff9e1a.txt rename to allure-report/data/attachments/87d604abdd1034ad.txt diff --git a/allure-report/data/attachments/30bb93915ba589e1.txt b/allure-report/data/attachments/87f01e814f201b12.txt similarity index 100% rename from allure-report/data/attachments/30bb93915ba589e1.txt rename to allure-report/data/attachments/87f01e814f201b12.txt diff --git a/allure-report/data/attachments/6e07492df16f7840.txt b/allure-report/data/attachments/8824f11650f12248.txt similarity index 100% rename from allure-report/data/attachments/6e07492df16f7840.txt rename to allure-report/data/attachments/8824f11650f12248.txt diff --git a/allure-report/data/attachments/d4c1b8030852d43f.txt b/allure-report/data/attachments/885315e2174c8284.txt similarity index 100% rename from allure-report/data/attachments/d4c1b8030852d43f.txt rename to allure-report/data/attachments/885315e2174c8284.txt diff --git a/allure-report/data/attachments/260e3d617394daf9.txt b/allure-report/data/attachments/89e2dbaee5a08a8e.txt similarity index 100% rename from allure-report/data/attachments/260e3d617394daf9.txt rename to allure-report/data/attachments/89e2dbaee5a08a8e.txt diff --git a/allure-report/data/attachments/51d402aefb9d5a50.txt b/allure-report/data/attachments/8aceddf9a40c21c4.txt similarity index 100% rename from allure-report/data/attachments/51d402aefb9d5a50.txt rename to allure-report/data/attachments/8aceddf9a40c21c4.txt diff --git a/allure-report/data/attachments/1aaba40705e2fc47.txt b/allure-report/data/attachments/8b70cbce8e882192.txt similarity index 100% rename from allure-report/data/attachments/1aaba40705e2fc47.txt rename to allure-report/data/attachments/8b70cbce8e882192.txt diff --git a/allure-report/data/attachments/dc6fc560f92c35a2.txt b/allure-report/data/attachments/8bf4ab3249d50d5d.txt similarity index 100% rename from allure-report/data/attachments/dc6fc560f92c35a2.txt rename to allure-report/data/attachments/8bf4ab3249d50d5d.txt diff --git a/allure-report/data/attachments/f7d99aafcc4f7095.txt b/allure-report/data/attachments/8c9b413e90bf769f.txt similarity index 100% rename from allure-report/data/attachments/f7d99aafcc4f7095.txt rename to allure-report/data/attachments/8c9b413e90bf769f.txt diff --git a/allure-report/data/attachments/a0b2ebd9f3514d62.txt b/allure-report/data/attachments/8cf8917f49abc708.txt similarity index 100% rename from allure-report/data/attachments/a0b2ebd9f3514d62.txt rename to allure-report/data/attachments/8cf8917f49abc708.txt diff --git a/allure-report/data/attachments/eea6ab4a75a4141f.txt b/allure-report/data/attachments/8d8a3475c1ccc5fb.txt similarity index 100% rename from allure-report/data/attachments/eea6ab4a75a4141f.txt rename to allure-report/data/attachments/8d8a3475c1ccc5fb.txt diff --git a/allure-report/data/attachments/5f55b46f1adbac58.txt b/allure-report/data/attachments/8e4c5f9ea62989e.txt similarity index 100% rename from allure-report/data/attachments/5f55b46f1adbac58.txt rename to allure-report/data/attachments/8e4c5f9ea62989e.txt diff --git a/allure-report/data/attachments/61d7cf4a7f7609fa.txt b/allure-report/data/attachments/8f0da0353e68cf34.txt similarity index 100% rename from allure-report/data/attachments/61d7cf4a7f7609fa.txt rename to allure-report/data/attachments/8f0da0353e68cf34.txt diff --git a/allure-report/data/attachments/c1b206842b9d15e3.txt b/allure-report/data/attachments/8f4bf05879c8645b.txt similarity index 100% rename from allure-report/data/attachments/c1b206842b9d15e3.txt rename to allure-report/data/attachments/8f4bf05879c8645b.txt diff --git a/allure-report/data/attachments/ad904e4dff4eacf0.txt b/allure-report/data/attachments/8fc1f3f9e7136bfe.txt similarity index 100% rename from allure-report/data/attachments/ad904e4dff4eacf0.txt rename to allure-report/data/attachments/8fc1f3f9e7136bfe.txt diff --git a/allure-report/data/attachments/4762790d78a26553.txt b/allure-report/data/attachments/8ffb3d947babe2e5.txt similarity index 100% rename from allure-report/data/attachments/4762790d78a26553.txt rename to allure-report/data/attachments/8ffb3d947babe2e5.txt diff --git a/allure-report/data/attachments/c5c7618408ea03e4.txt b/allure-report/data/attachments/918ce551f75f4a0e.txt similarity index 100% rename from allure-report/data/attachments/c5c7618408ea03e4.txt rename to allure-report/data/attachments/918ce551f75f4a0e.txt diff --git a/allure-report/data/attachments/c5ab42561d9470dc.txt b/allure-report/data/attachments/9639571481038f39.txt similarity index 100% rename from allure-report/data/attachments/c5ab42561d9470dc.txt rename to allure-report/data/attachments/9639571481038f39.txt diff --git a/allure-report/data/attachments/ff19f958435ebad0.txt b/allure-report/data/attachments/9664dbae27a9df3.txt similarity index 100% rename from allure-report/data/attachments/ff19f958435ebad0.txt rename to allure-report/data/attachments/9664dbae27a9df3.txt diff --git a/allure-report/data/attachments/f061bc52b29fdec3.txt b/allure-report/data/attachments/9735ba411f0b6bb5.txt similarity index 100% rename from allure-report/data/attachments/f061bc52b29fdec3.txt rename to allure-report/data/attachments/9735ba411f0b6bb5.txt diff --git a/allure-report/data/attachments/ee54cc9a323ef73f.txt b/allure-report/data/attachments/97d568438480d957.txt similarity index 100% rename from allure-report/data/attachments/ee54cc9a323ef73f.txt rename to allure-report/data/attachments/97d568438480d957.txt diff --git a/allure-report/data/attachments/66ad4b11c0086ef7.txt b/allure-report/data/attachments/9817c9d821675f57.txt similarity index 100% rename from allure-report/data/attachments/66ad4b11c0086ef7.txt rename to allure-report/data/attachments/9817c9d821675f57.txt diff --git a/allure-report/data/attachments/e3e63b4b3901e4cf.txt b/allure-report/data/attachments/982c55cae2a7ef4a.txt similarity index 100% rename from allure-report/data/attachments/e3e63b4b3901e4cf.txt rename to allure-report/data/attachments/982c55cae2a7ef4a.txt diff --git a/allure-report/data/attachments/3a3d2d13f3e8d074.txt b/allure-report/data/attachments/9846fc0a17d839b.txt similarity index 100% rename from allure-report/data/attachments/3a3d2d13f3e8d074.txt rename to allure-report/data/attachments/9846fc0a17d839b.txt diff --git a/allure-report/data/attachments/e13312b12957bd2f.txt b/allure-report/data/attachments/9adef8938da49aa4.txt similarity index 100% rename from allure-report/data/attachments/e13312b12957bd2f.txt rename to allure-report/data/attachments/9adef8938da49aa4.txt diff --git a/allure-report/data/attachments/20504931bd72ff66.txt b/allure-report/data/attachments/9bd069e9e159fee7.txt similarity index 100% rename from allure-report/data/attachments/20504931bd72ff66.txt rename to allure-report/data/attachments/9bd069e9e159fee7.txt diff --git a/allure-report/data/attachments/178127e0b150af3e.txt b/allure-report/data/attachments/9c2f5fc2bb8b3db8.txt similarity index 100% rename from allure-report/data/attachments/178127e0b150af3e.txt rename to allure-report/data/attachments/9c2f5fc2bb8b3db8.txt diff --git a/allure-report/data/attachments/826e1d893c73077a.txt b/allure-report/data/attachments/9da75d7f845f0505.txt similarity index 100% rename from allure-report/data/attachments/826e1d893c73077a.txt rename to allure-report/data/attachments/9da75d7f845f0505.txt diff --git a/allure-report/data/attachments/d4bf4df7343a141f.txt b/allure-report/data/attachments/9e8a1dedd1940971.txt similarity index 100% rename from allure-report/data/attachments/d4bf4df7343a141f.txt rename to allure-report/data/attachments/9e8a1dedd1940971.txt diff --git a/allure-report/data/attachments/a0d4534146449bf1.txt b/allure-report/data/attachments/9febde34d0c00b2f.txt similarity index 100% rename from allure-report/data/attachments/a0d4534146449bf1.txt rename to allure-report/data/attachments/9febde34d0c00b2f.txt diff --git a/allure-report/data/attachments/8c8aa30f0d3e03ac.txt b/allure-report/data/attachments/a03148d44cb41cd1.txt similarity index 100% rename from allure-report/data/attachments/8c8aa30f0d3e03ac.txt rename to allure-report/data/attachments/a03148d44cb41cd1.txt diff --git a/allure-report/data/attachments/2563dd25f9db8ef8.txt b/allure-report/data/attachments/a05e018d59cd8b23.txt similarity index 100% rename from allure-report/data/attachments/2563dd25f9db8ef8.txt rename to allure-report/data/attachments/a05e018d59cd8b23.txt diff --git a/allure-report/data/attachments/bc5d49dc5212bf5e.txt b/allure-report/data/attachments/a0d3807a4788c278.txt similarity index 100% rename from allure-report/data/attachments/bc5d49dc5212bf5e.txt rename to allure-report/data/attachments/a0d3807a4788c278.txt diff --git a/allure-report/data/attachments/1b3f240af350b21a.txt b/allure-report/data/attachments/a11058edff9d734d.txt similarity index 100% rename from allure-report/data/attachments/1b3f240af350b21a.txt rename to allure-report/data/attachments/a11058edff9d734d.txt diff --git a/allure-report/data/attachments/55c2dc25f3aca2ef.txt b/allure-report/data/attachments/a125eb4c92d61148.txt similarity index 100% rename from allure-report/data/attachments/55c2dc25f3aca2ef.txt rename to allure-report/data/attachments/a125eb4c92d61148.txt diff --git a/allure-report/data/attachments/ee5461145584dca2.txt b/allure-report/data/attachments/a156897cab59d4a9.txt similarity index 100% rename from allure-report/data/attachments/ee5461145584dca2.txt rename to allure-report/data/attachments/a156897cab59d4a9.txt diff --git a/allure-report/data/attachments/969369ae06b01d8f.txt b/allure-report/data/attachments/a21d8bb488556a6f.txt similarity index 100% rename from allure-report/data/attachments/969369ae06b01d8f.txt rename to allure-report/data/attachments/a21d8bb488556a6f.txt diff --git a/allure-report/data/attachments/e94d8c1e516fca3a.txt b/allure-report/data/attachments/a23effdd1e0b0387.txt similarity index 100% rename from allure-report/data/attachments/e94d8c1e516fca3a.txt rename to allure-report/data/attachments/a23effdd1e0b0387.txt diff --git a/allure-report/data/attachments/d1cc8240eecf71ad.txt b/allure-report/data/attachments/a243f5a6e2aef08.txt similarity index 100% rename from allure-report/data/attachments/d1cc8240eecf71ad.txt rename to allure-report/data/attachments/a243f5a6e2aef08.txt diff --git a/allure-report/data/attachments/4d46a258151a8eec.txt b/allure-report/data/attachments/a3650a70b5eae511.txt similarity index 100% rename from allure-report/data/attachments/4d46a258151a8eec.txt rename to allure-report/data/attachments/a3650a70b5eae511.txt diff --git a/allure-report/data/attachments/4606180442c9597a.txt b/allure-report/data/attachments/a425815a2146be3f.txt similarity index 100% rename from allure-report/data/attachments/4606180442c9597a.txt rename to allure-report/data/attachments/a425815a2146be3f.txt diff --git a/allure-report/data/attachments/1652eb7ad7f7ffae.txt b/allure-report/data/attachments/a5312ee34a83472.txt similarity index 100% rename from allure-report/data/attachments/1652eb7ad7f7ffae.txt rename to allure-report/data/attachments/a5312ee34a83472.txt diff --git a/allure-report/data/attachments/f0db32efa6426426.txt b/allure-report/data/attachments/a60431e704cfd67c.txt similarity index 100% rename from allure-report/data/attachments/f0db32efa6426426.txt rename to allure-report/data/attachments/a60431e704cfd67c.txt diff --git a/allure-report/data/attachments/c18cfc939d43f91f.txt b/allure-report/data/attachments/a6116dd9c620e39c.txt similarity index 100% rename from allure-report/data/attachments/c18cfc939d43f91f.txt rename to allure-report/data/attachments/a6116dd9c620e39c.txt diff --git a/allure-report/data/attachments/c19e93a1a848049d.txt b/allure-report/data/attachments/a6a60e5084ac1c11.txt similarity index 100% rename from allure-report/data/attachments/c19e93a1a848049d.txt rename to allure-report/data/attachments/a6a60e5084ac1c11.txt diff --git a/allure-report/data/attachments/34ddd4abd2f8dc67.txt b/allure-report/data/attachments/a6bd6cbda8e220e3.txt similarity index 100% rename from allure-report/data/attachments/34ddd4abd2f8dc67.txt rename to allure-report/data/attachments/a6bd6cbda8e220e3.txt diff --git a/allure-report/data/attachments/9ef5d72a43416890.txt b/allure-report/data/attachments/a892fb7f4ca8f546.txt similarity index 100% rename from allure-report/data/attachments/9ef5d72a43416890.txt rename to allure-report/data/attachments/a892fb7f4ca8f546.txt diff --git a/allure-report/data/attachments/919f00271c0b6744.txt b/allure-report/data/attachments/a99ebb2468b16b95.txt similarity index 100% rename from allure-report/data/attachments/919f00271c0b6744.txt rename to allure-report/data/attachments/a99ebb2468b16b95.txt diff --git a/allure-report/data/attachments/d0350a898056fbe2.txt b/allure-report/data/attachments/aaa63d8350548106.txt similarity index 100% rename from allure-report/data/attachments/d0350a898056fbe2.txt rename to allure-report/data/attachments/aaa63d8350548106.txt diff --git a/allure-report/data/attachments/e0460595a654ff1f.txt b/allure-report/data/attachments/aad37f3b55b49e8b.txt similarity index 100% rename from allure-report/data/attachments/e0460595a654ff1f.txt rename to allure-report/data/attachments/aad37f3b55b49e8b.txt diff --git a/allure-report/data/attachments/6e85f6f8a1949219.txt b/allure-report/data/attachments/abf9a812b0a61e07.txt similarity index 100% rename from allure-report/data/attachments/6e85f6f8a1949219.txt rename to allure-report/data/attachments/abf9a812b0a61e07.txt diff --git a/allure-report/data/attachments/d42f3c0595488474.txt b/allure-report/data/attachments/ac454cba7b8ef897.txt similarity index 100% rename from allure-report/data/attachments/d42f3c0595488474.txt rename to allure-report/data/attachments/ac454cba7b8ef897.txt diff --git a/allure-report/data/attachments/c34ac517b9df672f.txt b/allure-report/data/attachments/ac7ee8f205d4305f.txt similarity index 100% rename from allure-report/data/attachments/c34ac517b9df672f.txt rename to allure-report/data/attachments/ac7ee8f205d4305f.txt diff --git a/allure-report/data/attachments/f359371e55578388.txt b/allure-report/data/attachments/adebeeed90235942.txt similarity index 100% rename from allure-report/data/attachments/f359371e55578388.txt rename to allure-report/data/attachments/adebeeed90235942.txt diff --git a/allure-report/data/attachments/dc793fb42851981e.txt b/allure-report/data/attachments/ae198d98d59aaf55.txt similarity index 100% rename from allure-report/data/attachments/dc793fb42851981e.txt rename to allure-report/data/attachments/ae198d98d59aaf55.txt diff --git a/allure-report/data/attachments/45fa6f11637998ca.txt b/allure-report/data/attachments/aedb47484495e540.txt similarity index 100% rename from allure-report/data/attachments/45fa6f11637998ca.txt rename to allure-report/data/attachments/aedb47484495e540.txt diff --git a/allure-report/data/attachments/314ae6d54cae55b6.txt b/allure-report/data/attachments/af19b50155e57570.txt similarity index 100% rename from allure-report/data/attachments/314ae6d54cae55b6.txt rename to allure-report/data/attachments/af19b50155e57570.txt diff --git a/allure-report/data/attachments/3113bb39449ddf28.txt b/allure-report/data/attachments/afb99113fdc97fa7.txt similarity index 100% rename from allure-report/data/attachments/3113bb39449ddf28.txt rename to allure-report/data/attachments/afb99113fdc97fa7.txt diff --git a/allure-report/data/attachments/f56caa49d4564a64.txt b/allure-report/data/attachments/afc512e4954fc414.txt similarity index 100% rename from allure-report/data/attachments/f56caa49d4564a64.txt rename to allure-report/data/attachments/afc512e4954fc414.txt diff --git a/allure-report/data/attachments/5f33ac63c02af5a3.txt b/allure-report/data/attachments/b010e8f0a161de92.txt similarity index 100% rename from allure-report/data/attachments/5f33ac63c02af5a3.txt rename to allure-report/data/attachments/b010e8f0a161de92.txt diff --git a/allure-report/data/attachments/4ec4b9e8092c85e0.txt b/allure-report/data/attachments/b024c4fc790da6a0.txt similarity index 100% rename from allure-report/data/attachments/4ec4b9e8092c85e0.txt rename to allure-report/data/attachments/b024c4fc790da6a0.txt diff --git a/allure-report/data/attachments/5e9de29522b3bca9.txt b/allure-report/data/attachments/b04de969348b1187.txt similarity index 100% rename from allure-report/data/attachments/5e9de29522b3bca9.txt rename to allure-report/data/attachments/b04de969348b1187.txt diff --git a/allure-report/data/attachments/ebf0cbf302079de1.txt b/allure-report/data/attachments/b0ff98cda0b0c43.txt similarity index 100% rename from allure-report/data/attachments/ebf0cbf302079de1.txt rename to allure-report/data/attachments/b0ff98cda0b0c43.txt diff --git a/allure-report/data/attachments/2a834f90f4db7120.txt b/allure-report/data/attachments/b2310e8820061774.txt similarity index 100% rename from allure-report/data/attachments/2a834f90f4db7120.txt rename to allure-report/data/attachments/b2310e8820061774.txt diff --git a/allure-report/data/attachments/f2763bf761fdda50.txt b/allure-report/data/attachments/b278aa851a807748.txt similarity index 100% rename from allure-report/data/attachments/f2763bf761fdda50.txt rename to allure-report/data/attachments/b278aa851a807748.txt diff --git a/allure-report/data/attachments/c6f68f6f0d4b074f.txt b/allure-report/data/attachments/b3f562db94371de7.txt similarity index 100% rename from allure-report/data/attachments/c6f68f6f0d4b074f.txt rename to allure-report/data/attachments/b3f562db94371de7.txt diff --git a/allure-report/data/attachments/d20f4b2271cbc6fa.txt b/allure-report/data/attachments/b5f1637aeba19ba4.txt similarity index 100% rename from allure-report/data/attachments/d20f4b2271cbc6fa.txt rename to allure-report/data/attachments/b5f1637aeba19ba4.txt diff --git a/allure-report/data/attachments/cfd735e1e281b0c2.txt b/allure-report/data/attachments/b6c652a922a26947.txt similarity index 100% rename from allure-report/data/attachments/cfd735e1e281b0c2.txt rename to allure-report/data/attachments/b6c652a922a26947.txt diff --git a/allure-report/data/attachments/c57066a5ba7cb3b6.txt b/allure-report/data/attachments/b71080d98c3c005a.txt similarity index 100% rename from allure-report/data/attachments/c57066a5ba7cb3b6.txt rename to allure-report/data/attachments/b71080d98c3c005a.txt diff --git a/allure-report/data/attachments/6b092f3996f587d0.txt b/allure-report/data/attachments/b8226dfed0d6a202.txt similarity index 100% rename from allure-report/data/attachments/6b092f3996f587d0.txt rename to allure-report/data/attachments/b8226dfed0d6a202.txt diff --git a/allure-report/data/attachments/8b39f53200712f62.txt b/allure-report/data/attachments/b8b7177b76c24b60.txt similarity index 100% rename from allure-report/data/attachments/8b39f53200712f62.txt rename to allure-report/data/attachments/b8b7177b76c24b60.txt diff --git a/allure-report/data/attachments/d95c404945ad5b7e.txt b/allure-report/data/attachments/b8eb00e308a84c71.txt similarity index 100% rename from allure-report/data/attachments/d95c404945ad5b7e.txt rename to allure-report/data/attachments/b8eb00e308a84c71.txt diff --git a/allure-report/data/attachments/ae06587a78bdd6d0.txt b/allure-report/data/attachments/ba1557147d8416c1.txt similarity index 100% rename from allure-report/data/attachments/ae06587a78bdd6d0.txt rename to allure-report/data/attachments/ba1557147d8416c1.txt diff --git a/allure-report/data/attachments/1f59d384f3f447d6.txt b/allure-report/data/attachments/ba489e6f976c964f.txt similarity index 100% rename from allure-report/data/attachments/1f59d384f3f447d6.txt rename to allure-report/data/attachments/ba489e6f976c964f.txt diff --git a/allure-report/data/attachments/3438c05e0b734e.txt b/allure-report/data/attachments/bbfc3fd670d975ed.txt similarity index 100% rename from allure-report/data/attachments/3438c05e0b734e.txt rename to allure-report/data/attachments/bbfc3fd670d975ed.txt diff --git a/allure-report/data/attachments/9e2bb4472566335f.txt b/allure-report/data/attachments/bc673310ad989d77.txt similarity index 100% rename from allure-report/data/attachments/9e2bb4472566335f.txt rename to allure-report/data/attachments/bc673310ad989d77.txt diff --git a/allure-report/data/attachments/ba1dc1bb275f3b43.txt b/allure-report/data/attachments/bda0913251ec8a7b.txt similarity index 100% rename from allure-report/data/attachments/ba1dc1bb275f3b43.txt rename to allure-report/data/attachments/bda0913251ec8a7b.txt diff --git a/allure-report/data/attachments/204dbc79412a1f1a.txt b/allure-report/data/attachments/bf45d5ff12eeac.txt similarity index 100% rename from allure-report/data/attachments/204dbc79412a1f1a.txt rename to allure-report/data/attachments/bf45d5ff12eeac.txt diff --git a/allure-report/data/attachments/d2f0b70b32be23e6.txt b/allure-report/data/attachments/bf99ecdb396f2260.txt similarity index 100% rename from allure-report/data/attachments/d2f0b70b32be23e6.txt rename to allure-report/data/attachments/bf99ecdb396f2260.txt diff --git a/allure-report/data/attachments/b6c4fbc0a7fcea99.txt b/allure-report/data/attachments/c2193538ea3afe0a.txt similarity index 100% rename from allure-report/data/attachments/b6c4fbc0a7fcea99.txt rename to allure-report/data/attachments/c2193538ea3afe0a.txt diff --git a/allure-report/data/attachments/82626f88e303aee4.txt b/allure-report/data/attachments/c2a52b208b761917.txt similarity index 100% rename from allure-report/data/attachments/82626f88e303aee4.txt rename to allure-report/data/attachments/c2a52b208b761917.txt diff --git a/allure-report/data/attachments/cbe62037cd68092f.txt b/allure-report/data/attachments/c2e67de795c89a5a.txt similarity index 100% rename from allure-report/data/attachments/cbe62037cd68092f.txt rename to allure-report/data/attachments/c2e67de795c89a5a.txt diff --git a/allure-report/data/attachments/9cd6a45eab59a36a.txt b/allure-report/data/attachments/c2f1b1cb1ae72af.txt similarity index 100% rename from allure-report/data/attachments/9cd6a45eab59a36a.txt rename to allure-report/data/attachments/c2f1b1cb1ae72af.txt diff --git a/allure-report/data/attachments/58afed2a90df0f51.txt b/allure-report/data/attachments/c3f7cfc63c7ff6c0.txt similarity index 100% rename from allure-report/data/attachments/58afed2a90df0f51.txt rename to allure-report/data/attachments/c3f7cfc63c7ff6c0.txt diff --git a/allure-report/data/attachments/b1d7cd63e86f3101.txt b/allure-report/data/attachments/c44b1c3c0ffa10e2.txt similarity index 100% rename from allure-report/data/attachments/b1d7cd63e86f3101.txt rename to allure-report/data/attachments/c44b1c3c0ffa10e2.txt diff --git a/allure-report/data/attachments/94a514fff914ffad.txt b/allure-report/data/attachments/c451fef2d9e750cf.txt similarity index 100% rename from allure-report/data/attachments/94a514fff914ffad.txt rename to allure-report/data/attachments/c451fef2d9e750cf.txt diff --git a/allure-report/data/attachments/bf66b96af215b9a3.txt b/allure-report/data/attachments/c48ba88f01713cd9.txt similarity index 100% rename from allure-report/data/attachments/bf66b96af215b9a3.txt rename to allure-report/data/attachments/c48ba88f01713cd9.txt diff --git a/allure-report/data/attachments/3dc4bd0471b5b6f6.txt b/allure-report/data/attachments/c4c9e9114ad6559f.txt similarity index 100% rename from allure-report/data/attachments/3dc4bd0471b5b6f6.txt rename to allure-report/data/attachments/c4c9e9114ad6559f.txt diff --git a/allure-report/data/attachments/65e8f59235ab8ed3.txt b/allure-report/data/attachments/c4ea8d9f8cc216b.txt similarity index 100% rename from allure-report/data/attachments/65e8f59235ab8ed3.txt rename to allure-report/data/attachments/c4ea8d9f8cc216b.txt diff --git a/allure-report/data/attachments/2b46e4c3602d8a1.txt b/allure-report/data/attachments/c59a8e0803dd0f2a.txt similarity index 100% rename from allure-report/data/attachments/2b46e4c3602d8a1.txt rename to allure-report/data/attachments/c59a8e0803dd0f2a.txt diff --git a/allure-report/data/attachments/751c11b33d3f5691.txt b/allure-report/data/attachments/c5bd55033a46cbd6.txt similarity index 100% rename from allure-report/data/attachments/751c11b33d3f5691.txt rename to allure-report/data/attachments/c5bd55033a46cbd6.txt diff --git a/allure-report/data/attachments/fdf2076e64b836.txt b/allure-report/data/attachments/c5e476dd4b6a20ba.txt similarity index 100% rename from allure-report/data/attachments/fdf2076e64b836.txt rename to allure-report/data/attachments/c5e476dd4b6a20ba.txt diff --git a/allure-report/data/attachments/44675768f78eee8a.txt b/allure-report/data/attachments/c74dda443bb93e16.txt similarity index 100% rename from allure-report/data/attachments/44675768f78eee8a.txt rename to allure-report/data/attachments/c74dda443bb93e16.txt diff --git a/allure-report/data/attachments/1ac173a13e0da0bb.txt b/allure-report/data/attachments/c9f5f46a27073adb.txt similarity index 100% rename from allure-report/data/attachments/1ac173a13e0da0bb.txt rename to allure-report/data/attachments/c9f5f46a27073adb.txt diff --git a/allure-report/data/attachments/3b4c07500e73b2e1.txt b/allure-report/data/attachments/cb0ee2e023f35346.txt similarity index 100% rename from allure-report/data/attachments/3b4c07500e73b2e1.txt rename to allure-report/data/attachments/cb0ee2e023f35346.txt diff --git a/allure-report/data/attachments/34940f05851678f8.txt b/allure-report/data/attachments/cb23a7b28fc18bd6.txt similarity index 100% rename from allure-report/data/attachments/34940f05851678f8.txt rename to allure-report/data/attachments/cb23a7b28fc18bd6.txt diff --git a/allure-report/data/attachments/bd42675a360dbc62.txt b/allure-report/data/attachments/cb41782d94c9aab7.txt similarity index 100% rename from allure-report/data/attachments/bd42675a360dbc62.txt rename to allure-report/data/attachments/cb41782d94c9aab7.txt diff --git a/allure-report/data/attachments/bad36bad780dde2b.txt b/allure-report/data/attachments/cbd3c7018b67e8e4.txt similarity index 100% rename from allure-report/data/attachments/bad36bad780dde2b.txt rename to allure-report/data/attachments/cbd3c7018b67e8e4.txt diff --git a/allure-report/data/attachments/2648dfeb91d0b6ab.txt b/allure-report/data/attachments/cc4cfb2dc7db30af.txt similarity index 100% rename from allure-report/data/attachments/2648dfeb91d0b6ab.txt rename to allure-report/data/attachments/cc4cfb2dc7db30af.txt diff --git a/allure-report/data/attachments/6ab893879ec80255.txt b/allure-report/data/attachments/cc63349648479638.txt similarity index 100% rename from allure-report/data/attachments/6ab893879ec80255.txt rename to allure-report/data/attachments/cc63349648479638.txt diff --git a/allure-report/data/attachments/34e25e08dcd9bfc5.txt b/allure-report/data/attachments/ccbd4e70fd917551.txt similarity index 100% rename from allure-report/data/attachments/34e25e08dcd9bfc5.txt rename to allure-report/data/attachments/ccbd4e70fd917551.txt diff --git a/allure-report/data/attachments/5491995ca08b8bb7.txt b/allure-report/data/attachments/cf72669419827310.txt similarity index 100% rename from allure-report/data/attachments/5491995ca08b8bb7.txt rename to allure-report/data/attachments/cf72669419827310.txt diff --git a/allure-report/data/attachments/d3b2cac4981701e4.txt b/allure-report/data/attachments/cf7f17d6f7fd036a.txt similarity index 100% rename from allure-report/data/attachments/d3b2cac4981701e4.txt rename to allure-report/data/attachments/cf7f17d6f7fd036a.txt diff --git a/allure-report/data/attachments/ce02051636b52745.txt b/allure-report/data/attachments/cfe73955a863d89d.txt similarity index 100% rename from allure-report/data/attachments/ce02051636b52745.txt rename to allure-report/data/attachments/cfe73955a863d89d.txt diff --git a/allure-report/data/attachments/9cc4cc662dcb9dfc.txt b/allure-report/data/attachments/cfefef663b0332e5.txt similarity index 100% rename from allure-report/data/attachments/9cc4cc662dcb9dfc.txt rename to allure-report/data/attachments/cfefef663b0332e5.txt diff --git a/allure-report/data/attachments/bddb4d20a85ffa0.txt b/allure-report/data/attachments/d00e203177644379.txt similarity index 100% rename from allure-report/data/attachments/bddb4d20a85ffa0.txt rename to allure-report/data/attachments/d00e203177644379.txt diff --git a/allure-report/data/attachments/a5c2a655acda438b.txt b/allure-report/data/attachments/d14e7908f9d07961.txt similarity index 100% rename from allure-report/data/attachments/a5c2a655acda438b.txt rename to allure-report/data/attachments/d14e7908f9d07961.txt diff --git a/allure-report/data/attachments/5fc6cabc1aa63064.txt b/allure-report/data/attachments/d2045a3977b6446a.txt similarity index 100% rename from allure-report/data/attachments/5fc6cabc1aa63064.txt rename to allure-report/data/attachments/d2045a3977b6446a.txt diff --git a/allure-report/data/attachments/d55f5479718ea061.txt b/allure-report/data/attachments/d440fc5c222001d7.txt similarity index 100% rename from allure-report/data/attachments/d55f5479718ea061.txt rename to allure-report/data/attachments/d440fc5c222001d7.txt diff --git a/allure-report/data/attachments/6caa4cb1d46acc21.txt b/allure-report/data/attachments/d4a81151a0ff1cd3.txt similarity index 100% rename from allure-report/data/attachments/6caa4cb1d46acc21.txt rename to allure-report/data/attachments/d4a81151a0ff1cd3.txt diff --git a/allure-report/data/attachments/88865904ee358dea.txt b/allure-report/data/attachments/d4e82428a3f7df08.txt similarity index 100% rename from allure-report/data/attachments/88865904ee358dea.txt rename to allure-report/data/attachments/d4e82428a3f7df08.txt diff --git a/allure-report/data/attachments/b2f6f360d1ace914.txt b/allure-report/data/attachments/d514a9b6a336ccd7.txt similarity index 100% rename from allure-report/data/attachments/b2f6f360d1ace914.txt rename to allure-report/data/attachments/d514a9b6a336ccd7.txt diff --git a/allure-report/data/attachments/ad1ea44cc626928f.txt b/allure-report/data/attachments/d548d3f08000ee3d.txt similarity index 100% rename from allure-report/data/attachments/ad1ea44cc626928f.txt rename to allure-report/data/attachments/d548d3f08000ee3d.txt diff --git a/allure-report/data/attachments/cf1c2ed826ee28d4.txt b/allure-report/data/attachments/d5ed21afa8637a26.txt similarity index 100% rename from allure-report/data/attachments/cf1c2ed826ee28d4.txt rename to allure-report/data/attachments/d5ed21afa8637a26.txt diff --git a/allure-report/data/attachments/7564cea1d0950828.txt b/allure-report/data/attachments/d66cc433d6fd8732.txt similarity index 100% rename from allure-report/data/attachments/7564cea1d0950828.txt rename to allure-report/data/attachments/d66cc433d6fd8732.txt diff --git a/allure-report/data/attachments/a45633f3542e88e2.txt b/allure-report/data/attachments/d7c022e7514eebb0.txt similarity index 100% rename from allure-report/data/attachments/a45633f3542e88e2.txt rename to allure-report/data/attachments/d7c022e7514eebb0.txt diff --git a/allure-report/data/attachments/ea3af59eb83f9741.txt b/allure-report/data/attachments/d7e95fbbc7ae4edc.txt similarity index 100% rename from allure-report/data/attachments/ea3af59eb83f9741.txt rename to allure-report/data/attachments/d7e95fbbc7ae4edc.txt diff --git a/allure-report/data/attachments/abfce931e4a4e183.txt b/allure-report/data/attachments/d857b907a04662b0.txt similarity index 100% rename from allure-report/data/attachments/abfce931e4a4e183.txt rename to allure-report/data/attachments/d857b907a04662b0.txt diff --git a/allure-report/data/attachments/de5056f652a803a9.txt b/allure-report/data/attachments/d85c19e058de9af1.txt similarity index 100% rename from allure-report/data/attachments/de5056f652a803a9.txt rename to allure-report/data/attachments/d85c19e058de9af1.txt diff --git a/allure-report/data/attachments/f220cca72eddc4b9.txt b/allure-report/data/attachments/d9705198a9828f90.txt similarity index 100% rename from allure-report/data/attachments/f220cca72eddc4b9.txt rename to allure-report/data/attachments/d9705198a9828f90.txt diff --git a/allure-report/data/attachments/628a7fe95e3c81cb.txt b/allure-report/data/attachments/d98685c9fe133870.txt similarity index 100% rename from allure-report/data/attachments/628a7fe95e3c81cb.txt rename to allure-report/data/attachments/d98685c9fe133870.txt diff --git a/allure-report/data/attachments/9f427722b0cc833f.txt b/allure-report/data/attachments/da2e8ce75b901e82.txt similarity index 100% rename from allure-report/data/attachments/9f427722b0cc833f.txt rename to allure-report/data/attachments/da2e8ce75b901e82.txt diff --git a/allure-report/data/attachments/5084a50ffeae5e8e.txt b/allure-report/data/attachments/dba3075441128a41.txt similarity index 100% rename from allure-report/data/attachments/5084a50ffeae5e8e.txt rename to allure-report/data/attachments/dba3075441128a41.txt diff --git a/allure-report/data/attachments/5f71f9eaace164be.txt b/allure-report/data/attachments/dba645bb71d6294b.txt similarity index 100% rename from allure-report/data/attachments/5f71f9eaace164be.txt rename to allure-report/data/attachments/dba645bb71d6294b.txt diff --git a/allure-report/data/attachments/c794d6c4e5eeb4af.txt b/allure-report/data/attachments/dbdc65123191fc3f.txt similarity index 100% rename from allure-report/data/attachments/c794d6c4e5eeb4af.txt rename to allure-report/data/attachments/dbdc65123191fc3f.txt diff --git a/allure-report/data/attachments/d497c1182dc91a88.txt b/allure-report/data/attachments/dcbab4e3ea8be2cb.txt similarity index 100% rename from allure-report/data/attachments/d497c1182dc91a88.txt rename to allure-report/data/attachments/dcbab4e3ea8be2cb.txt diff --git a/allure-report/data/attachments/5ee29d280ede2dce.txt b/allure-report/data/attachments/dcf012b2df6b781b.txt similarity index 100% rename from allure-report/data/attachments/5ee29d280ede2dce.txt rename to allure-report/data/attachments/dcf012b2df6b781b.txt diff --git a/allure-report/data/attachments/f0f7c752081290ad.txt b/allure-report/data/attachments/dd95f43103333bf7.txt similarity index 100% rename from allure-report/data/attachments/f0f7c752081290ad.txt rename to allure-report/data/attachments/dd95f43103333bf7.txt diff --git a/allure-report/data/attachments/c76ccd6ee86418bf.txt b/allure-report/data/attachments/dea29eab15838d9c.txt similarity index 100% rename from allure-report/data/attachments/c76ccd6ee86418bf.txt rename to allure-report/data/attachments/dea29eab15838d9c.txt diff --git a/allure-report/data/attachments/c2efa1b50e5fd149.txt b/allure-report/data/attachments/df070dcdc10f9538.txt similarity index 100% rename from allure-report/data/attachments/c2efa1b50e5fd149.txt rename to allure-report/data/attachments/df070dcdc10f9538.txt diff --git a/allure-report/data/attachments/93cd2d5c953cd624.txt b/allure-report/data/attachments/dfcb4cec23e82cb9.txt similarity index 100% rename from allure-report/data/attachments/93cd2d5c953cd624.txt rename to allure-report/data/attachments/dfcb4cec23e82cb9.txt diff --git a/allure-report/data/attachments/482dd2a19da8e0f3.txt b/allure-report/data/attachments/e048c0e6bb06d724.txt similarity index 100% rename from allure-report/data/attachments/482dd2a19da8e0f3.txt rename to allure-report/data/attachments/e048c0e6bb06d724.txt diff --git a/allure-report/data/attachments/7009434379983da3.txt b/allure-report/data/attachments/e0680ee49daf3ecd.txt similarity index 100% rename from allure-report/data/attachments/7009434379983da3.txt rename to allure-report/data/attachments/e0680ee49daf3ecd.txt diff --git a/allure-report/data/attachments/77d84c2ff475cafc.txt b/allure-report/data/attachments/e0c62dc3071fe329.txt similarity index 100% rename from allure-report/data/attachments/77d84c2ff475cafc.txt rename to allure-report/data/attachments/e0c62dc3071fe329.txt diff --git a/allure-report/data/attachments/524678a9109bb789.txt b/allure-report/data/attachments/e11f321ad70e66d6.txt similarity index 100% rename from allure-report/data/attachments/524678a9109bb789.txt rename to allure-report/data/attachments/e11f321ad70e66d6.txt diff --git a/allure-report/data/attachments/42d0476a0c6524cb.txt b/allure-report/data/attachments/e225c605af3cdfe6.txt similarity index 100% rename from allure-report/data/attachments/42d0476a0c6524cb.txt rename to allure-report/data/attachments/e225c605af3cdfe6.txt diff --git a/allure-report/data/attachments/74e435a54cfbfd93.txt b/allure-report/data/attachments/e23896a75b3be671.txt similarity index 100% rename from allure-report/data/attachments/74e435a54cfbfd93.txt rename to allure-report/data/attachments/e23896a75b3be671.txt diff --git a/allure-report/data/attachments/389b47ec7013850.txt b/allure-report/data/attachments/e245408b463a8838.txt similarity index 100% rename from allure-report/data/attachments/389b47ec7013850.txt rename to allure-report/data/attachments/e245408b463a8838.txt diff --git a/allure-report/data/attachments/c3b009b2f078b1df.txt b/allure-report/data/attachments/e3476f63fad27664.txt similarity index 100% rename from allure-report/data/attachments/c3b009b2f078b1df.txt rename to allure-report/data/attachments/e3476f63fad27664.txt diff --git a/allure-report/data/attachments/1193ec856aedeb02.txt b/allure-report/data/attachments/e355939f9d2af970.txt similarity index 100% rename from allure-report/data/attachments/1193ec856aedeb02.txt rename to allure-report/data/attachments/e355939f9d2af970.txt diff --git a/allure-report/data/attachments/fa72b6c6dff59425.txt b/allure-report/data/attachments/e3a4cf54bcea79f.txt similarity index 100% rename from allure-report/data/attachments/fa72b6c6dff59425.txt rename to allure-report/data/attachments/e3a4cf54bcea79f.txt diff --git a/allure-report/data/attachments/2ee2228a3a71cd4e.txt b/allure-report/data/attachments/e3e8b5194a02b840.txt similarity index 100% rename from allure-report/data/attachments/2ee2228a3a71cd4e.txt rename to allure-report/data/attachments/e3e8b5194a02b840.txt diff --git a/allure-report/data/attachments/4617a41c1cef3094.txt b/allure-report/data/attachments/e41185e6a2547eda.txt similarity index 100% rename from allure-report/data/attachments/4617a41c1cef3094.txt rename to allure-report/data/attachments/e41185e6a2547eda.txt diff --git a/allure-report/data/attachments/985fda141a79d4a4.txt b/allure-report/data/attachments/e51eb49b458f8b30.txt similarity index 100% rename from allure-report/data/attachments/985fda141a79d4a4.txt rename to allure-report/data/attachments/e51eb49b458f8b30.txt diff --git a/allure-report/data/attachments/15675e98e5c4a9b8.txt b/allure-report/data/attachments/e5b6ae7757c6e743.txt similarity index 100% rename from allure-report/data/attachments/15675e98e5c4a9b8.txt rename to allure-report/data/attachments/e5b6ae7757c6e743.txt diff --git a/allure-report/data/attachments/aa2e305576d932cc.txt b/allure-report/data/attachments/e5c727b0b5b40d52.txt similarity index 100% rename from allure-report/data/attachments/aa2e305576d932cc.txt rename to allure-report/data/attachments/e5c727b0b5b40d52.txt diff --git a/allure-report/data/attachments/7a2a4c86abf39025.txt b/allure-report/data/attachments/e8051d2095f3e05f.txt similarity index 100% rename from allure-report/data/attachments/7a2a4c86abf39025.txt rename to allure-report/data/attachments/e8051d2095f3e05f.txt diff --git a/allure-report/data/attachments/659fcb73d39cab15.txt b/allure-report/data/attachments/ea2c55d1a71e4c1b.txt similarity index 100% rename from allure-report/data/attachments/659fcb73d39cab15.txt rename to allure-report/data/attachments/ea2c55d1a71e4c1b.txt diff --git a/allure-report/data/attachments/7e845202c63af573.txt b/allure-report/data/attachments/ea8ea3523c9226e8.txt similarity index 100% rename from allure-report/data/attachments/7e845202c63af573.txt rename to allure-report/data/attachments/ea8ea3523c9226e8.txt diff --git a/allure-report/data/attachments/ff5bcd4167469499.txt b/allure-report/data/attachments/eacae423597e783.txt similarity index 100% rename from allure-report/data/attachments/ff5bcd4167469499.txt rename to allure-report/data/attachments/eacae423597e783.txt diff --git a/allure-report/data/attachments/a094172377fbc2e7.txt b/allure-report/data/attachments/eb7ef9838cd7cad8.txt similarity index 100% rename from allure-report/data/attachments/a094172377fbc2e7.txt rename to allure-report/data/attachments/eb7ef9838cd7cad8.txt diff --git a/allure-report/data/attachments/6e926e3f96426662.txt b/allure-report/data/attachments/ee3a0764d3c252bb.txt similarity index 100% rename from allure-report/data/attachments/6e926e3f96426662.txt rename to allure-report/data/attachments/ee3a0764d3c252bb.txt diff --git a/allure-report/data/attachments/bf26048e33b52cf9.txt b/allure-report/data/attachments/ef79b655f296972f.txt similarity index 100% rename from allure-report/data/attachments/bf26048e33b52cf9.txt rename to allure-report/data/attachments/ef79b655f296972f.txt diff --git a/allure-report/data/attachments/c30d75bb7c349fc2.txt b/allure-report/data/attachments/efe9c31cce4f2691.txt similarity index 100% rename from allure-report/data/attachments/c30d75bb7c349fc2.txt rename to allure-report/data/attachments/efe9c31cce4f2691.txt diff --git a/allure-report/data/attachments/cae9efbee6f5aead.txt b/allure-report/data/attachments/f0b58c59c3feea05.txt similarity index 100% rename from allure-report/data/attachments/cae9efbee6f5aead.txt rename to allure-report/data/attachments/f0b58c59c3feea05.txt diff --git a/allure-report/data/attachments/d5f66b749f49be9c.txt b/allure-report/data/attachments/f0e8db62b4d5a04e.txt similarity index 100% rename from allure-report/data/attachments/d5f66b749f49be9c.txt rename to allure-report/data/attachments/f0e8db62b4d5a04e.txt diff --git a/allure-report/data/attachments/4450ee3f66285b1.txt b/allure-report/data/attachments/f0f675da06acca44.txt similarity index 100% rename from allure-report/data/attachments/4450ee3f66285b1.txt rename to allure-report/data/attachments/f0f675da06acca44.txt diff --git a/allure-report/data/attachments/e25ec87c38eb56d7.txt b/allure-report/data/attachments/f1383a1298b478d1.txt similarity index 100% rename from allure-report/data/attachments/e25ec87c38eb56d7.txt rename to allure-report/data/attachments/f1383a1298b478d1.txt diff --git a/allure-report/data/attachments/79af870721a1c097.txt b/allure-report/data/attachments/f28cf2c881206bc7.txt similarity index 100% rename from allure-report/data/attachments/79af870721a1c097.txt rename to allure-report/data/attachments/f28cf2c881206bc7.txt diff --git a/allure-report/data/attachments/f69de901ccccedd4.txt b/allure-report/data/attachments/f3103a75268ee27b.txt similarity index 100% rename from allure-report/data/attachments/f69de901ccccedd4.txt rename to allure-report/data/attachments/f3103a75268ee27b.txt diff --git a/allure-report/data/attachments/c28669c80cc4b641.txt b/allure-report/data/attachments/f40eb1a37e76915b.txt similarity index 100% rename from allure-report/data/attachments/c28669c80cc4b641.txt rename to allure-report/data/attachments/f40eb1a37e76915b.txt diff --git a/allure-report/data/attachments/eaa824bd6b5ae161.txt b/allure-report/data/attachments/f476dbef5564bf84.txt similarity index 100% rename from allure-report/data/attachments/eaa824bd6b5ae161.txt rename to allure-report/data/attachments/f476dbef5564bf84.txt diff --git a/allure-report/data/attachments/64e75cae3405924b.txt b/allure-report/data/attachments/f4fc65b495fcb88b.txt similarity index 100% rename from allure-report/data/attachments/64e75cae3405924b.txt rename to allure-report/data/attachments/f4fc65b495fcb88b.txt diff --git a/allure-report/data/attachments/9eb9cb7b27cc62e1.txt b/allure-report/data/attachments/f5908886e3245af0.txt similarity index 100% rename from allure-report/data/attachments/9eb9cb7b27cc62e1.txt rename to allure-report/data/attachments/f5908886e3245af0.txt diff --git a/allure-report/data/attachments/e1e2028306699105.txt b/allure-report/data/attachments/f5d9059f956d5013.txt similarity index 100% rename from allure-report/data/attachments/e1e2028306699105.txt rename to allure-report/data/attachments/f5d9059f956d5013.txt diff --git a/allure-report/data/attachments/710515c8ae418cf7.txt b/allure-report/data/attachments/f5f071e3b309d77.txt similarity index 100% rename from allure-report/data/attachments/710515c8ae418cf7.txt rename to allure-report/data/attachments/f5f071e3b309d77.txt diff --git a/allure-report/data/attachments/e45f83b71ba0db05.txt b/allure-report/data/attachments/f63a818ce466a5d5.txt similarity index 100% rename from allure-report/data/attachments/e45f83b71ba0db05.txt rename to allure-report/data/attachments/f63a818ce466a5d5.txt diff --git a/allure-report/data/attachments/f04c5edec457b138.txt b/allure-report/data/attachments/f6add51b506494b4.txt similarity index 100% rename from allure-report/data/attachments/f04c5edec457b138.txt rename to allure-report/data/attachments/f6add51b506494b4.txt diff --git a/allure-report/data/attachments/cff3f59db3a9bd3d.txt b/allure-report/data/attachments/f79d82c8ac8b6bda.txt similarity index 100% rename from allure-report/data/attachments/cff3f59db3a9bd3d.txt rename to allure-report/data/attachments/f79d82c8ac8b6bda.txt diff --git a/allure-report/data/attachments/99c79ea3adfa82ee.txt b/allure-report/data/attachments/f8ebdb80be997fde.txt similarity index 100% rename from allure-report/data/attachments/99c79ea3adfa82ee.txt rename to allure-report/data/attachments/f8ebdb80be997fde.txt diff --git a/allure-report/data/attachments/9378bde66fa0c099.txt b/allure-report/data/attachments/f9702a98b358e235.txt similarity index 100% rename from allure-report/data/attachments/9378bde66fa0c099.txt rename to allure-report/data/attachments/f9702a98b358e235.txt diff --git a/allure-report/data/attachments/995455f4d59eea4c.txt b/allure-report/data/attachments/f9e0beeb8300348.txt similarity index 100% rename from allure-report/data/attachments/995455f4d59eea4c.txt rename to allure-report/data/attachments/f9e0beeb8300348.txt diff --git a/allure-report/data/attachments/c9bdbc88a29a3828.txt b/allure-report/data/attachments/fa01ea71c168121d.txt similarity index 100% rename from allure-report/data/attachments/c9bdbc88a29a3828.txt rename to allure-report/data/attachments/fa01ea71c168121d.txt diff --git a/allure-report/data/attachments/86ab33dc86ae86c3.txt b/allure-report/data/attachments/fac7406e86e2d594.txt similarity index 100% rename from allure-report/data/attachments/86ab33dc86ae86c3.txt rename to allure-report/data/attachments/fac7406e86e2d594.txt diff --git a/allure-report/data/attachments/cc5f43f6454a1720.txt b/allure-report/data/attachments/fafd1746b13ebf11.txt similarity index 100% rename from allure-report/data/attachments/cc5f43f6454a1720.txt rename to allure-report/data/attachments/fafd1746b13ebf11.txt diff --git a/allure-report/data/attachments/bd3f1d26bd9a423c.txt b/allure-report/data/attachments/fb0df6afc6219df9.txt similarity index 100% rename from allure-report/data/attachments/bd3f1d26bd9a423c.txt rename to allure-report/data/attachments/fb0df6afc6219df9.txt diff --git a/allure-report/data/attachments/fe1be9ee27fc2e73.txt b/allure-report/data/attachments/fb84be60b66700fa.txt similarity index 100% rename from allure-report/data/attachments/fe1be9ee27fc2e73.txt rename to allure-report/data/attachments/fb84be60b66700fa.txt diff --git a/allure-report/data/attachments/bafac05e5cdca73e.txt b/allure-report/data/attachments/fbdaeda311992dcb.txt similarity index 100% rename from allure-report/data/attachments/bafac05e5cdca73e.txt rename to allure-report/data/attachments/fbdaeda311992dcb.txt diff --git a/allure-report/data/attachments/afa5523631c32cdd.txt b/allure-report/data/attachments/fd192e99e6a5065d.txt similarity index 100% rename from allure-report/data/attachments/afa5523631c32cdd.txt rename to allure-report/data/attachments/fd192e99e6a5065d.txt diff --git a/allure-report/data/attachments/922ae39708baa025.txt b/allure-report/data/attachments/fd40fcf970ebd4c6.txt similarity index 100% rename from allure-report/data/attachments/922ae39708baa025.txt rename to allure-report/data/attachments/fd40fcf970ebd4c6.txt diff --git a/allure-report/data/attachments/b3fc81b6d668011d.txt b/allure-report/data/attachments/fec7d456d7e1f9e8.txt similarity index 100% rename from allure-report/data/attachments/b3fc81b6d668011d.txt rename to allure-report/data/attachments/fec7d456d7e1f9e8.txt diff --git a/allure-report/data/attachments/ed807b9aabc03ce3.txt b/allure-report/data/attachments/ff5fc916c91c2ec1.txt similarity index 100% rename from allure-report/data/attachments/ed807b9aabc03ce3.txt rename to allure-report/data/attachments/ff5fc916c91c2ec1.txt diff --git a/allure-report/data/attachments/8201c952fac9b91.txt b/allure-report/data/attachments/ffe262df372f1494.txt similarity index 100% rename from allure-report/data/attachments/8201c952fac9b91.txt rename to allure-report/data/attachments/ffe262df372f1494.txt diff --git a/allure-report/data/behaviors.csv b/allure-report/data/behaviors.csv index 21fc605670d..7a2b3180c58 100644 --- a/allure-report/data/behaviors.csv +++ b/allure-report/data/behaviors.csv @@ -1,155 +1,159 @@ "BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN" -"0","6 kyu","0","String","3","0","Permute a Palindrome","0" +"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" "0","7 kyu","0","Lists","4","0","The museum of incredible dull things","0" -"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" -"0","4 kyu","0","String","1","0","Human readable duration format","0" -"0","6 kyu","0","Classes","6","0","DefaultList","0" -"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" -"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" -"0","8 kyu","0","String","1","0","Is it a palindrome?","0" -"0","6 kyu","0","String","1","0","Duplicate Encoder","0" +"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" +"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" +"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" +"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" +"0","7 kyu","0","Square Calculation","6","0","You're a square","0" "0","8 kyu","0","Lists","3","0","Logical Calculator","0" +"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" +"0","6 kyu","0","Algorithms","1","0","Unique In Order","0" +"0","7 kyu","0","Math","3","0","Easy Line","0" +"0","8 kyu","0","Addition","1","0","Messi goals function","0" +"0","8 kyu","0","Lists","1","0","Check the exam","0" +"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" +"0","5 kyu","0","Math","0","4","Diophantine Equation","0" +"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" +"0","4 kyu","0","Classes","3","0","The Greatest Warrior","0" +"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" +"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" +"0","5 kyu","0","Math","0","1","Josephus Survivor","0" "0","6 kyu","0","Algorithms","1","0","Multiples of 3 or 5","0" -"0","5 kyu","0","String","1","0","Where my anagrams at?","0" -"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" +"0","4 kyu","0","String","1","0","Human readable duration format","0" +"0","6 kyu","0","Lists","1","0","Array.diff","0" +"0","6 kyu","0","String","3","0","Permute a Palindrome","0" +"0","6 kyu","0","Factorial","1","0","Color Choice","0" +"0","6 kyu","0","Classes","6","0","DefaultList","0" +"0","7 kyu","0","String","1","0","Pull your words together, man!","0" +"0","3 kyu","0","Lists","1","0","Make a spiral","0" +"0","6 kyu","0","String","6","0","First character that repeats","0" +"0","5 kyu","0","Lists","2","0","Sports League Table Ranking","0" "0","7 kyu","0","String","2","0","Jaden Casing Strings","0" +"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" "0","4 kyu","0","String","1","0","Next smaller number with the same digits","0" +"0","5 kyu","0","String","1","0","First non-repeating character","0" +"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" +"0","6 kyu","0","String","1","0","Your order, please","0" +"0","7 kyu","0","String","2","0","Help Bob count letters and digits.","0" +"0","4 kyu","0","Lists","1","0","Snail","0" +"0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" "0","7 kyu","0","String","1","0","Find the longest gap!","0" -"0","8 kyu","0","Lists","1","0","Convert a string to an array","0" -"0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" -"0","8 kyu","0","Multiplication","1","0","Multiply","0" +"0","8 kyu","0","String","3","0","Reversed Strings","0" +"0","7 kyu","0","String","1","0","Significant Figures","0" +"0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" +"0","7 kyu","0","String","5","0","Valid Parentheses","0" +"0","8 kyu","0","Lists","4","0","Find the first non-consecutive number","0" +"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" "0","6 kyu","0","Algorithms","1","0","Easy Diagonal","0" -"0","6 kyu","0","String","3","0","Character frequency","0" -"0","5 kyu","0","Lists","1","0","Moving Zeros To The End","0" -"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" -"0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" -"0","4 kyu","0","Lists","1","0","Snail","0" -"0","5 kyu","0","Math","0","4","Diophantine Equation","0" -"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" +"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" +"0","6 kyu","0","Algorithms","1","0","Valid Braces","0" +"0","6 kyu","0","String","1","0","String subpattern recognition II","0" +"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" +"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" +"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" +"0","8 kyu","0","Multiplication","1","0","Multiply","0" +"0","6 kyu","0","String","1","0","Count letters in string","0" +"0","5 kyu","0","Lists","0","1","Find the smallest","0" +"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" +"0","8 kyu","0","Lists","4","0","Counting sheep...","0" +"0","3 kyu","0","String","2","2","Line Safari - Is that a line?","0" +"0","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" +"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" "0","7 kyu","0","String","1","0","V A P O R C O D E","0" -"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" -"0","7 kyu","0","Math","3","0","Easy Line","0" -"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" -"0","8 kyu","0","Math","1","0","Will you make it?","0" -"0","7 kyu","0","Square Calculation","6","0","You're a square","0" -"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" -"0","8 kyu","0","String","1","0","Remove First and Last Character","0" -"0","7 kyu","0","Math","1","0","Share prices","0" -"0","5 kyu","0","Validation","1","0","Valid Parentheses","0" -"0","6 kyu","0","Factorial","1","0","Color Choice","0" -"0","2 kyu","0","String","1","0","Evaluate mathematical expression","0" -"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" +"0","6 kyu","0","Lists","1","0","Find the odd int","0" +"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","5 kyu","0","String","1","0","Simple Pig Latin","0" +"0","6 kyu","0","Lists","1","0","Pyramid Array","0" "0","7 kyu","0","Formatting","1","0","Formatting decimal places #1","0" -"0","8 kyu","0","Math","1","0","Century From Year","0" +"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" +"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" +"0","6 kyu","0","Math","1","0","Disease Spread","0" +"0","8 kyu","0","Conditions","1","0","Personalized greeting","0" +"0","7 kyu","0","Lists","2","0","Simple Fun #152: Invite More Women?","0" +"0","5 kyu","0","String","0","1","Count IP Addresses","0" +"0","6 kyu","0","Algorithms","1","0","Sums of Parts","0" +"0","7 kyu","0","Math","4","0","Sum of Triangular Numbers","0" "0","8 kyu","0","Loops","1","0","Grasshopper - Summation","0" -"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" -"0","5 kyu","0","Lists","0","1","Find the smallest","0" "0","4 kyu","0","Lists","1","0","Sum by Factors","0" -"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" -"0","7 kyu","0","Addition","4","0","Sum of Numbers","0" -"0","5 kyu","0","Math","1","0","Human Readable Time","0" +"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" +"0","6 kyu","0","String","3","0","Character frequency","0" "0","5 kyu","0","Lists","3","0","Find the safest places in town","0" -"0","5 kyu","0","String","1","0","First non-repeating character","0" -"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" -"0","8 kyu","0","Tuple","1","0","Greek Sort","0" -"0","8 kyu","0","Conditions","2","0","Keep up the hoop","0" -"0","6 kyu","0","String","6","0","First character that repeats","0" "0","6 kyu","0","Algorithms","1","0","Encrypt this!","0" -"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" -"0","5 kyu","0","Lists","1","0","Tic-Tac-Toe Checker","0" -"0","6 kyu","0","Algorithms","1","0","Unique In Order","0" -"0","6 kyu","0","String","1","0","Who likes it?","0" -"0","8 kyu","0","Calculation","1","0","Grasshopper - Terminal game move function","0" -"0","3 kyu","0","Lists","1","0","Battleship field validator","0" -"0","8 kyu","0","String","3","0","Holiday VI - Shark Pontoon","0" -"0","4 kyu","0","String","1","0","Strings Mix","0" -"0","4 kyu","0","Validation","1","0","Sudoku Solution Validator","0" -"0","7 kyu","0","String","1","0","Isograms","0" -"0","8 kyu","0","Lists","4","0","Counting sheep...","0" -"0","6 kyu","0","String","1","0","String subpattern recognition I","0" -"0","6 kyu","0","Lists","1","0","Array to HTML table","0" -"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" -"0","3 kyu","0","String","0","4","Line Safari - Is that a line?","0" -"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" -"0","7 kyu","0","String","1","0","The First Non Repeated Character In A String","0" "0","8 kyu","0","Lists","1","0","Swap Values","0" -"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" -"0","7 kyu","0","String","1","0","Pull your words together, man!","0" -"0","7 kyu","0","Flow Control","1","0","Powers of 3","0" -"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" -"0","7 kyu","0","Lists","1","0","Always perfect","0" -"0","5 kyu","0","String","1","0","Simple Pig Latin","0" +"0","6 kyu","0","Algorithms","1","0","Potion Class 101","0" +"0","6 kyu","0","Math","1","0","Sum of Digits / Digital Root","0" +"0","5 kyu","0","String","1","0","String incrementer","0" +"0","8 kyu","0","Tuple","1","0","Greek Sort","0" +"0","5 kyu","0","String","1","0","Alphabet wars - nuclear strike","0" +"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" +"0","4 kyu","0","String","1","0","Strip Comments","0" +"0","5 kyu","0","String","1","0","Where my anagrams at?","0" +"0","6 kyu","0","Lists","1","0","ROTATE THE LETTERS OF EACH ELEMENT","0" +"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" +"0","4 kyu","0","Aggregations","1","0","Sum of Intervals","0" +"0","7 kyu","0","Calculation","1","0","Sum of powers of 2","0" +"0","8 kyu","0","Lists","3","0","Well of Ideas - Easy Version","0" +"0","7 kyu","0","Lists","3","0","Coloured Triangles","0" "0","6 kyu","0","Lists","1","0","Sort the odd","0" -"0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" -"0","6 kyu","0","String","1","0","String transformer","0" -"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" -"0","8 kyu","0","Addition","1","0","Messi goals function","0" -"0","6 kyu","0","String","1","0","Count letters in string","0" -"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" -"0","8 kyu","0","String","1","0","The Feast of Many Beasts","0" -"0","7 kyu","0","String","1","0","Significant Figures","0" -"0","5 kyu","0","Math","0","1","Josephus Survivor","0" -"0","No kyu","0","Utils","2","0","Testing is_prime util","0" -"0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" -"0","8 kyu","0","Lists","3","0","A wolf in sheep's clothing","0" -"0","5 kyu","0","Lists","1","0","flatten()","0" -"0","7 kyu","0","Lists","2","0","Simple Fun #152: Invite More Women?","0" -"0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" -"0","8 kyu","0","Calculation","1","0","Keep Hydrated!","0" -"0","4 kyu","0","Control Flow","1","0","Validate Sudoku with size `NxN`","0" -"0","8 kyu","0","String","1","0","MakeUpperCase","0" -"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" -"0","5 kyu","0","Optimization","1","0","Integers: Recreation One","0" -"0","5 kyu","0","Lists","1","0","Sports League Table Ranking","0" +"0","8 kyu","0","String","1","0","Is it a palindrome?","0" "0","8 kyu","0","String","1","0","Remove String Spaces","0" -"0","7 kyu","0","String","1","0","Substituting Variables Into Strings: Padded Numbers","0" -"0","7 kyu","0","Classes","1","0","Make Class","0" -"0","5 kyu","0","Lists","1","0","Directions Reduction","0" -"0","8 kyu","0","String","3","0","Reversed Strings","0" -"0","4 kyu","0","String","0","1","Permutations","0" +"0","6 kyu","0","String","1","0","String subpattern recognition I","0" +"0","4 kyu","0","String","1","0","Strings Mix","0" +"0","7 kyu","0","Math","1","0","Share prices","0" +"0","No kyu","0","Utils","2","0","Testing gen_primes util","0" +"0","7 kyu","0","Lists","2","0","Computer problem series #1: Fill the Hard Disk Drive","0" "0","4 kyu","0","String","1","0","Range Extraction","0" -"0","4 kyu","0","String","1","0","Strip Comments","0" -"0","6 kyu","0","String","1","0","String subpattern recognition II","0" -"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" -"0","6 kyu","0","Algorithms","1","0","Help the bookseller !","0" -"0","7 kyu","0","String","1","0","Help Bob count letters and digits.","0" -"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" -"0","5 kyu","0","String","1","0","The Hashtag Generator","0" -"0","3 kyu","0","String","2","0","Rail Fence Cipher: Encoding and Decoding","0" +"0","6 kyu","0","String","1","0","Numericals of a String","0" +"0","6 kyu","0","String","1","0","String transformer","0" +"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" +"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" +"0","5 kyu","0","Control Flow","1","0","Did I Finish my Sudoku?","0" "0","6 kyu","0","String","1","0","String subpattern recognition III","0" +"0","5 kyu","0","Memoization","1","0","Master your primes: sieve with memoization","0" +"0","5 kyu","0","String","1","0","The Hashtag Generator","0" +"0","7 kyu","0","Classes","1","0","Make Class","0" +"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" +"0","6 kyu","0","Algorithms","1","0","Row of the odd triangle","0" +"0","6 kyu","0","Algorithms","1","0","Scheduling (Shortest Job First or SJF)","0" +"0","6 kyu","0","String","1","0","Who likes it?","0" "0","7 kyu","0","String","1","0","Password validator","0" -"0","8 kyu","0","Calculation","1","0","Will there be enough space?","0" +"0","7 kyu","0","String","1","0","Basic Math (Add or Subtract)","0" +"0","6 kyu","0","String","1","0","Duplicate Encoder","0" "0","6 kyu","0","Numbers","1","0","Pokemon Damage Calculator","0" -"0","8 kyu","0","Conditions","1","0","Personalized greeting","0" -"0","3 kyu","0","Lists","1","0","Make a spiral","0" -"0","8 kyu","0","Lists","1","0","Check the exam","0" -"0","6 kyu","0","Lists","1","0","Array.diff","0" -"0","6 kyu","0","String","1","0","Binary to Text (ASCII) Conversion","0" -"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" -"0","6 kyu","0","Algorithms","1","0","Vasya - Clerk","0" -"0","4 kyu","0","String","1","0","Most frequently used words in a text","0" +"0","6 kyu","0","String","1","0","Format a string of names like 'Bart, Lisa & Maggie'.","0" +"0","7 kyu","0","Calculation","1","0","Simple Fun #74: Growing Plant","0" +"0","5 kyu","0","Lists","1","0","flatten()","0" "0","6 kyu","0","Algorithms","1","0","Decipher this!","0" -"0","8 kyu","0","String","1","0","altERnaTIng cAsE <=> ALTerNAtiNG CaSe","0" -"0","5 kyu","0","String","1","0","String incrementer","0" -"0","7 kyu","0","Lists","1","0","Sort Out The Men From Boys","0" -"0","7 kyu","0","Lists","2","0","Fun with lists: length","0" +"0","8 kyu","0","String","1","0","MakeUpperCase","0" "0","6 kyu","0","Math","1","0","Casino chips","0" -"0","6 kyu","0","String","1","0","Numericals of a String","0" -"0","5 kyu","0","String","1","0","Not very secure","0" -"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" -"0","5 kyu","0","String","0","1","Count IP Addresses","0" +"0","5 kyu","0","String","1","0","Extract the domain name from a URL","0" +"0","4 kyu","0","String","0","1","Permutations","0" +"0","8 kyu","0","Lists","1","0","Enumerable Magic #25 - Take the First N Elements","0" +"0","6 kyu","0","Lists","1","0","Array to HTML table","0" +"0","5 kyu","0","Lists","1","0","Directions Reduction","0" "0","5 kyu","0","Lists","1","0","Fibonacci Streaming","0" -"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" -"0","8 kyu","0","Geometry","1","0","Surface Area and Volume of a Box","0" -"0","5 kyu","0","Memoization","1","0","Sum of Pairs","0" -"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" -"0","6 kyu","0","Math","1","0","Number Zoo Patrol","0" -"0","8 kyu","0","Date","2","0","Is your period late","0" +"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" +"0","3 kyu","0","Lists","1","0","Battleship field validator","0" "0","8 kyu","0","Boolean","1","0","L1: Set Alarm","0" -"0","6 kyu","0","Lists","1","0","Pyramid Array","0" +"0","8 kyu","0","Formatting","1","0","Formatting decimal places #0","0" +"0","7 kyu","0","String","1","0","Disemvowel Trolls","0" +"0","No kyu","0","Utils","2","0","Testing is_prime util","0" +"0","7 kyu","0","Math","1","0","Sum of odd numbers","0" +"0","8 kyu","0","Math","1","0","Will you make it?","0" +"0","6 kyu","0","Math","1","0","A Rule of Divisibility by 13","0" +"0","7 kyu","0","Lists","1","0","Sum of two lowest positive integers","0" +"0","5 kyu","0","Math","1","0","Number of trailing zeros of N!","0" +"0","8 kyu","0","Calculation","2","0","Grasshopper - Check for factor","0" +"0","8 kyu","0","Lists","1","0","My head is at the wrong end!","0" +"0","8 kyu","0","Calculation","1","0","Third Angle of a Triangle","0" +"0","8 kyu","0","Math","1","0","Century From Year","0" "0","3 kyu","0","String","1","0","Calculator","0" -"0","6 kyu","0","Lists","1","0","Find the odd int","0" "0","8 kyu","0","Lists","1","0","Count the Monkeys!","0" -"0","6 kyu","0","Math","1","0","Disease Spread","0" -"0","6 kyu","0","String","1","0","Your order, please","0" -"0","7 kyu","0","Control Flow","1","0","Maximum Multiple","0" +"0","7 kyu","0","Lists","1","0","Always perfect","0" +"0","7 kyu","0","String","1","0","Isograms","0" +"0","5 kyu","0","Math","1","0","Human Readable Time","0" +"0","5 kyu","0","String","1","0","Not very secure","0" +"0","6 kyu","0","Math","0","1","No arithmetic progressions","0" +"0","8 kyu","0","String","1","0","Remove First and Last Character","0" +"0","4 kyu","0","String","1","0","Next bigger number with the same digits","0" diff --git a/allure-report/data/behaviors.json b/allure-report/data/behaviors.json index 72ea920dd97..a695b6b3ce8 100644 --- a/allure-report/data/behaviors.json +++ b/allure-report/data/behaviors.json @@ -1 +1 @@ -{"uid":"b1a8273437954620fa374b796ffaacdd","name":"behaviors","children":[{"name":"7 kyu","children":[{"name":"Lists","children":[{"name":"Coloured Triangles","children":[{"name":"test_random","uid":"a83637127d81f7d9","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"f80f9bf6821c7c25","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_triangle","uid":"2d65aaadaa20d5c2","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"af6e405f57c78056","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: negative","uid":"f0c848519588d2dc","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'save' function: positive","uid":"4bdc75ea73bb042","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"f0d79dba84dbdf82","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function where head = None","uid":"204a2114486cc2f9","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"d43fade2d388854f74dcf379c2d20b78"},{"name":"The museum of incredible dull things","children":[{"name":"'multiply' function verification with one element list","uid":"c1ed75effe27f7a1","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with empty list","uid":"c8b2e451486f6a25","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification: lists with multiple digits","uid":"742a65a772f90af2","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with random list","uid":"af191d67a3f53ad3","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"27f931848cb4802b2a474210e0697350"},{"name":"Simple Fun #152: Invite More Women?","children":[{"name":"Testing invite_more_women function (negative)","uid":"6c5d99461aa2603","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing invite_more_women function (positive)","uid":"ad12195e4f930686","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"547f04beeb8e83b4","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"d4c75bd412ea18140891c19073d6e992"},{"name":"Sum of two lowest positive integers","children":[{"name":"Two smallest numbers in the start of the list","uid":"3ea60f3a146e3d51","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"5191e3901298ceecab4d95e059bd1166"}],"uid":"5446f5bb24a3f2ec1f4ba91eec8eabfb"},{"name":"String","children":[{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"7f4f9e94ec6d4f1e","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"f1c4cfcd59974ea","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"daba4c1f34c45d24f142c5f0651610dc"},{"name":"Find the longest gap!","children":[{"name":"Testing gap function","uid":"776a48c95cfacbf7","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Help Bob count letters and digits.","children":[{"name":"Testing count_letters_and_digits function","uid":"c11bd2bbb0f17cd9","parentUid":"2c812329d9b34f7fcedf688bc9c33806","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"3cad1df85b3a49c","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"9d90f23892be7ac3","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"3bd61bc704b417e2","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"aee4538f6230f980","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"fb554c589af927337f0c8f9532d32e3c"},{"name":"Pull your words together, man!","children":[{"name":"Testing 'solution' function","uid":"f09191f837671677","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"a80b9adf611eb67d","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"fbbb69f84c1b433f","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"3474094828ebf15497f0921cd9a35147"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"9275e1d85a023003","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"3e00c2c35d282154598febaf022db8e7"},{"name":"The First Non Repeated Character In A String","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"c7f51c235702ff2b","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"9a0c160871c69941729fb974987bc16e"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a and b are equal","uid":"73a0aa79bef78acd","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"a37b17c93d1df521","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"fb032b53923bc0e9","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"1ef1cf7383671b63","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing calc_combinations_per_row function","uid":"5ef0ca25b0e8e9c5","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"c7106989a12e3c0a","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"fb3ce43e36479ba0","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"dba3101c45ee1611","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"5215ad6eb474a73c045aec07a6a3c16b"},{"name":"Sum of odd numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"d837297408a13c1e","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"96a0e38f9494e0fc9a8670b38935b4ea"},{"name":"Sum of Triangular Numbers","children":[{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"46f01e6c3f72b063","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"281344c06cab651e","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"aac9dbbaca38b054","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"a14fdddc74cd287e","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"b4711af327de2eb768048b3a4d56d9cd"}],"uid":"68a1252a28be3460cab5153c66bd568d"},{"name":"Formatting","children":[{"name":"Formatting decimal places #1","children":[{"name":"Testing two_decimal_places function","uid":"611b4f8cf836294a","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"ed7e6642b4a33579cc2bdfb50ee94265"}],"uid":"709fbb67e44c72d83fee5d0a070ddc80"},{"name":"Calculation","children":[{"name":"Simple Fun #74: Growing Plant","children":[{"name":"Testing growing_plant function","uid":"c63189b867db5809","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"a1f1a4f06f915307bd30eb815c06d484"},{"name":"Sum of powers of 2","children":[{"name":"powers function should return an array of unique numbers","uid":"dfb4af6de633e98","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"91ff78dc5a767b91","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"3b2aae0f9b8872133d2bd9efdc9c6f5c"}],"uid":"be6fd0474b59166886b255e74a2356d3"},{"name":"Control Flow","children":[{"name":"Maximum Multiple","children":[{"name":"Testing max_multiple function","uid":"af5a357d104e13f2","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"7d5b0650b07aa9ee47f6ab5bcd539db7"}],"uid":"c0d2ddf6400082082f4d7b3f3a8b16e4"},{"name":"Flow Control","children":[{"name":"Powers of 3","children":[{"name":"Testing largestPower function","uid":"a5e3b3442b4ab9dd","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"8cade17d59deac3e8524008d95e7a24e"}],"uid":"3dea78a9b2652566a6e60d714774d7cd"},{"name":"Square Calculation","children":[{"name":"You're a square","children":[{"name":"Negative numbers","uid":"5cbeef874f8f5965","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"380e12b965b39180","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"f8cfd8001c2b32fd","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"8a85b974bace8b60","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"1c92b73c681a87bf","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a2cb5446a34df86","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"bae175df64710ffa217b09c3916cddc7"}],"uid":"b7ab3783083060fd53ed586261dbba9c"}],"uid":"34def7811028a87608f001c322f01caa"},{"name":"2 kyu","children":[{"name":"String","children":[{"name":"Evaluate mathematical expression","children":[{"name":"Testing calc function","uid":"d6d06cbc227917e","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"fdfca1ff8a83ac2e97b42cc58848493c"}],"uid":"dc898de6e59c04826af3b2063399801f"}],"uid":"1c397fed37ec222ba2e7e57019a1fd8a"},{"name":"3 kyu","children":[{"name":"Lists","children":[{"name":"Battleship field validator","children":[{"name":"Testing validate_battlefield function","uid":"36b9e5073b489f49","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"164087ecc666d9a0","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]}],"uid":"3bc8ebc89d5761dae7034183898d85a0"}],"uid":"2a5dd713a10a61840a1bfc279b739534"},{"name":"String","children":[{"name":"Calculator","children":[{"name":"Testing Calculator class","uid":"57bbb6ca73efd1b4","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Line Safari - Is that a line?","children":[{"name":"test_starting_position_from_negatives","uid":"92b17e5074e54ef7","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_negative","uid":"620b2589fb870406","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"f4c5ff18f0370583","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_starting_position_from_positives","uid":"3edaeb1c9114b312","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Encoding functionality","uid":"3fa15071b1bee987","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Decoding functionality","uid":"7e0e76f32ac7ce4e","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0541111ff512a02bf5a9b1e9b19b282e"}],"uid":"113a893cb5c746de49c827fc45c98d87"}],"uid":"956182e9935ac64fc0622b60cfe4823a"},{"name":"4 kyu","children":[{"name":"String","children":[{"name":"Human readable duration format","children":[{"name":"Testing format_duration","uid":"409595d25cc5d60c","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]}],"uid":"1be85cde8c2ba0404aa8e2196e46d50f"},{"name":"Most frequently used words in a text","children":[{"name":"Testing top_3_words function","uid":"647dfe698e2a6fdb","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"913459f449cde9ee","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"db7b4c897ddcf1a6","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"6fbcaa806475fb37","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"a747d5b0c0952ec15c0319f42a6f0056"},{"name":"Range Extraction","children":[{"name":"Testing solution function","uid":"99f691b62c390084","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"afdaa298aab7eba8","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"5c64823a2a73f974","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"16026a681cee6bae","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"521b14729542d5c4","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"af3c309699fc2b8b","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]}],"uid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc"}],"uid":"55d453de83201196eb9fdfd0711643b7"},{"name":"Aggregations","children":[{"name":"Sum of Intervals","children":[{"name":"Testing sum_of_intervals function","uid":"acc95e26a53d92ff","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]}],"uid":"06a4428b7cdbcff87274cd6f22fa54dd"}],"uid":"0bb31737bbb23dc104cf3a5f710e9370"},{"name":"Classes","children":[{"name":"The Greatest Warrior","children":[{"name":"Testing Battle method","uid":"6ce4bba2ff4664c2","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"bc3230f80ad8864d","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"c1f2317d20109e13","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"25f6d563b3f222fd3637ec178f1b3829"}],"uid":"1b88ab8e8506eaa709573095130a441e"},{"name":"Control Flow","children":[{"name":"Validate Sudoku with size `NxN`","children":[{"name":"Testing Sudoku class","uid":"a921030da8c9a520","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"c01e6a39d1400d037d3131c57ebbb93a"}],"uid":"4a7b305292be7b9d4793c52267b512fe"}],"uid":"e694a19aa064ac2844c4d1534344085d"},{"name":"5 kyu","children":[{"name":"String","children":[{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"aca9d99cb0e5842e","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"e5ac2209dd79eabb","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"edc68bf1f1210cb26a97f88b1b0da928"},{"name":"Extract the domain name from a URL","children":[{"name":"Testing domain_name function","uid":"d8e9539521c4ca00","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"4cdd4dbb9d06fcf3da672dfaa704b94a"},{"name":"First non-repeating character","children":[{"name":"Testing first_non_repeating_letter function","uid":"689de206e9df0991","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"41a3f66c1c393960","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"50ee9d4380f72a56c561c8d4eb5328fe"},{"name":"Simple Pig Latin","children":[{"name":"Testing pig_it function","uid":"e650d3e05f6d005c","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"a42793a5da57f5c7","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"df5d4d9d07af61a1c5dee0c106a4b74a"},{"name":"The Hashtag Generator","children":[{"name":"Testing 'generate_hashtag' function","uid":"e943739be0c776f3","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"74afb414b6e0cabc","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"bdeee8c93559dd06743701cce90df37c"}],"uid":"df3bfcb3365d909e3c3e7988c65693cb"},{"name":"Control Flow","children":[{"name":"Did I Finish my Sudoku?","children":[{"name":"Testing done_or_not function","uid":"df3147d31fee6968","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]}],"uid":"68d793f4711a84c29b23c36264e398f3"}],"uid":"faac866a865222fe5f2791add48593c2"},{"name":"Math","children":[{"name":"Diophantine Equation","children":[{"name":"test_solution_big","uid":"6827fd264cb4d263","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"ad08cb0fb6eef203","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c322e80c6cd8da83","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"a064a48d91c28f13","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"5ce5d1790a16984bcdf81bfbd7c90f3a"},{"name":"Human Readable Time","children":[{"name":"Testing make_readable function","uid":"4e7abb728f95d63f","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"62bf772c3a2aa5d2","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"2e80716327f2e53affdbbd6f2e9424d5"},{"name":"Number of trailing zeros of N!","children":[{"name":"Testing zeros function","uid":"2c4e292a782b80e3","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Lists","children":[{"name":"Directions Reduction","children":[{"name":"Testing dirReduc function","uid":"d65c16a1b47d468e","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Find the safest places in town","children":[{"name":"Testing create_city_map function","uid":"e798d2f5cc38e024","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"34569132e9551c33","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"2ed8dfd7ca5a3d13","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"5ecd182a341dd7b4","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"257a5ad111bd69a7","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"84ae1ddd95d9c6d3","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"bdcb772653d8aad","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Sports League Table Ranking","children":[{"name":"Testing compute_ranks","uid":"cf2235e5886d8954","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"63cbfe00daba1c69","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"60f5877935ced5c5","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]}],"uid":"194eb219c9d8417faeba6491be196ce5"}],"uid":"bb1d4ae102373a78a957d0394a04ffbe"},{"name":"Memoization","children":[{"name":"Master your primes: sieve with memoization","children":[{"name":"Testing is_prime function","uid":"2f09ef1a750aec43","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]}],"uid":"2c3772a14d6a05b2f628a27d6cb8f142"},{"name":"Sum of Pairs","children":[{"name":"Testing done_or_not function","uid":"be5a8376fdcba717","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"ee841c30eebb4276a39fb42e03fe3f4c"}],"uid":"e7f3896ca4fb187537f1041c05e5cc8e"},{"name":"Validation","children":[{"name":"Valid Parentheses","children":[{"name":"Testing valid_parentheses function","uid":"d8f6e0603b79e82b","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]}],"uid":"e985725cc05687bdde0ddb9ecde0e3da"}],"uid":"b6b45b5a92347a9c63bfb3b09b345802"}],"uid":"2c485802e45bfffcff54bba714c94c3c"},{"name":"6 kyu","children":[{"name":"Lists","children":[{"name":"Array.diff","children":[{"name":"Testing array_diff function","uid":"f52a489cb0add672","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"b78c37ec3b0f496f","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"a8f585325dda0d7a9718a81260508f36"},{"name":"Find the odd int","children":[{"name":"Find the int that appears an odd number of times","uid":"ccf5a8c46639d0ec","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"578c3a6cd3e7e40f","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]}],"uid":"b0101bfcf3048ad4213cf0362a23d781"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"b98125cb150cd794","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"Sort the odd","children":[{"name":"Testing the 'sort_array' function","uid":"1ef3e1da7f90eb82","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"b7cf9896298b070623c99d8c29d9079f"}],"uid":"86902b68b922e81b550870f6a0b941aa"},{"name":"Math","children":[{"name":"A Rule of Divisibility by 13","children":[{"name":"Testing 'thirt' function","uid":"66f1b8d1e5ed1dbe","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"d1585e7c78fd8d06","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"b3f7088fed8dedd7","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"900ed6bd99df3d56","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b09c3af5fb8aaf78abea51876ede4d01"},{"name":"Number Zoo Patrol","children":[{"name":"Testing the 'find_missing_number' function","uid":"f0e71551541527fc","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"ecd029e0f98c606","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"9b5481bda4f939276ac60d69f00ef2b1"}],"uid":"97ae4d195d4697dc1414e14d9a974532"},{"name":"String","children":[{"name":"Binary to Text (ASCII) Conversion","children":[{"name":"Testing binary_to_string function","uid":"5c281d5272513bfd","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"a38a360357cb186b186e0b296da9b925"},{"name":"Character frequency","children":[{"name":"All chars are in upper case","uid":"e1e70dabc7dad91e","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in mixed case","uid":"291bd12f30edb56f","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in lower case","uid":"79e39b6957e2fa23","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"7ba8a4247f4c6307","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"a8ada246e9141e4e","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with alphabet chars only","uid":"a0cc441d7d4eb4dd","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no alphabet chars","uid":"4260c429366ea20f","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with mixed type of chars","uid":"e885db3276511b9a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no duplicate chars","uid":"62e4f6698c2439c","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String alphabet chars and spaces","uid":"b864bfcb14132f63","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'longest_repetition' function","uid":"bb5e32abc058341d","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"04b320738417a6f78ac398c1b2c47f58"},{"name":"Format a string of names like 'Bart, Lisa & Maggie'.","children":[{"name":"String with no duplicate chars","uid":"863d982a547ab48a","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"89ceeba296a3ea3","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"30cacf1f2fb31f20","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (positive)","uid":"f921307aa8b56caa","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (negative)","uid":"f5b1db39220bbcf9","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ecfe278b9d03b10","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"363bbcd706a423ee9d09af41dbed39ea"},{"name":"String subpattern recognition II","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"c0ff31e127206139","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"02ab0c9dd970c68e754366e49479f916"},{"name":"String subpattern recognition III","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"29266ed99d46b2a","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"393bfd608cfae3d1eb6343cc7a5011db"},{"name":"String transformer","children":[{"name":"Testing string_transformer function","uid":"469371686ca36a1e","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"57946e73be805e2a","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"91e3c1348f0cd9d2","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"3d3e842542b066f3","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: append","uid":"7f890ca68cdfc481","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"14e29fc6b385d9d8","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"4359475f5ec554bd","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"43c0068fe0a1265e","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a33fb2570aec1823","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"93b3042e12ae0dc2","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"8a24f091ab8ff2e6405b466c1e4a82b3"}],"uid":"d1c03c9ab51dd09075f7a945d20660c1"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"682a94239c4fcbde","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"7f2ec06c200d3086","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"6b49391a0624f51c","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"6fa497202340a32e0a130fcace2ebd9b"},{"name":"Help the bookseller !","children":[{"name":"Testing stock_list function","uid":"66511dda8143933e","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"324c41918ed3c26a","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"7d1621a20d6f8fe7","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"4c3877c30e625752","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"ab402f3759df06f","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"1c8034b1a6365fc2","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"396df158495e2556","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"70bd4a49f8dcba99c129a214bc1f7f1c"}],"uid":"eaa4d90dd79abb31c68174a0eed94d16"}],"uid":"c1da5957fc38e62f642ed11281caa9f6"},{"name":"8 kyu","children":[{"name":"String","children":[{"name":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe","children":[{"name":"Testing to_alternating_case function","uid":"5653676293d9b683","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"34febd97f08d8df7","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"2c2a3e42bb3933c8","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"f5a3f0d4d035c3a4","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"69f91e5f44fcbcaa","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"781079de643a720d","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"f5da6537a014533","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]}],"uid":"4b36c87cfaebb1a5dada03c82230cf72"},{"name":"Remove String Spaces","children":[{"name":"Test that no_space function removes the spaces","uid":"62692a0c3dd76e6c","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Reversed Strings","children":[{"name":"Test with empty string","uid":"f1acd3007b7873ed","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with regular string","uid":"2cbc31ebfbb61905","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"b843b5b7994550ed","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"f3b283ff21d85aec","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"1d2c6842ef40288f","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"392fd3f6c486b67030db126f6508cccd"},{"name":"Will you make it?","children":[{"name":"Testing zero_fuel function","uid":"627a7fd2fe38a284","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Lists","children":[{"name":"Convert a string to an array","children":[{"name":"Testing string_to_array function","uid":"8ded43d0fdf317ac","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"b867e5092f796e5b","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"367a7bc3f244c81d1e748c7c5a555216"},{"name":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"9710b9a44c2e3c82","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2fba83a53ac553ac","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"c462a5b80d49c98b","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"a7151a5672bbc2f6","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"8b31152bd581baeb","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"af241db983f2d0be4c7832f6a37c6a42"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"7cef5a6f9a11a927","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"53d75ff9d73daf75","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"fed28c7a9755def6","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"6881087bd4c8b374","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"cd298347a8b67e93","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"de314943cf5bdd10","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"3be027c950740ddd","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"cee46a1116cde2e1","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"1d6c3f09e5599bcec1677f346a53fd07"},{"name":"My head is at the wrong end!","children":[{"name":"'fix_the_meerkat function function verification","uid":"1152e12f582a6d83","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"ce5b44ba32daaf31","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'Publish!'","uid":"5329936079819472","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"b32352034ba0a692","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"70e9bff1f7e13160","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"26a8f15fb55204be5eb21d3c53008497"},{"name":"A wolf in sheep's clothing","children":[{"name":"Wolf at the end of the queue","uid":"a3beec2fa9a311c4","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"85d9d1820cce2f7e","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"966dbbb37b9c251e","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"3d78fc8019d4a8d88990dd06e01ba4ef"}],"uid":"d70fe8a79bbd28a2e0dc34820c5ffcf6"},{"name":"Formatting","children":[{"name":"Formatting decimal places #0","children":[{"name":"Testing two_decimal_places function","uid":"c0e2de6ef36ce602","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"041ee40aba795a3cc8d5ac64fb36eefd"}],"uid":"f2cdb089dac7eeb9475c0e020ae4d5c0"},{"name":"Calculation","children":[{"name":"Grasshopper - Check for factor","children":[{"name":"Testing check_for_factor function: positive flow","uid":"5e8c0121e99e8c0","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b14acb4de8eb0e3a","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"3151ebffdc64c952","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"6bb1a909958ad3a2","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"564be6d750e08ee1","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"ffc3f48cf5f0bf9f","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"a2776f2124bd86f4","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"c8a6a3e5884b319c","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"e2014f1d530bb2df35398d339641ff42"}],"uid":"46db6a161fa13ff321d204f919fe1110"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"3d238edf9c2316ff","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]}],"uid":"053875ab71cd94da64903e0ce02235de"},{"name":"Keep up the hoop","children":[{"name":"Testing hoop_count function (negative test case)","uid":"cbc7a26721b4acfd","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"7f23a2b3d247ad31","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Tuple","children":[{"name":"Greek Sort","children":[{"name":"Testing 'greek_comparator' function","uid":"c301f45b01d7d10f","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"2f3903759aaa8e19cec4647c55baa02d"}],"uid":"89ee363c4b98900b87bdd5c0a5a7e6e9"},{"name":"Date","children":[{"name":"Is your period late","children":[{"name":"Testing period_is_late function (negative)","uid":"6a770856a19e186","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"8fac702aa93d2093","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"6af8370630444180","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"de3c176bdacd6cb0","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"c08b2480b8f26290","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BOOLEANS","FUNDAMENTALS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"}],"uid":"e897ee22c2fb08393e12fd9de84c2107"},{"name":"No kyu","children":[{"name":"Utils","children":[{"name":"Testing gen_primes util","children":[{"name":"Negative test cases for gen_primes function testing","uid":"5e4b0e05a0862f7e","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"928532982127bba0","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"fe77bba421870077d5d6e0fa886c7cb5"},{"name":"Testing is_prime util","children":[{"name":"Positive test cases for is_prime function testing","uid":"2030ea00b6998f67","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for is_prime function testing","uid":"73d92f8f0c07772d","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"2d53241e9ad2ed86540a9d7b3ef674c7"}],"uid":"aa645cdd87f620cf58517de6d125709f"}],"uid":"309a3015b55d887bf63688beded010f1"}]} \ No newline at end of file +{"uid":"b1a8273437954620fa374b796ffaacdd","name":"behaviors","children":[{"name":"7 kyu","children":[{"name":"Lists","children":[{"name":"Coloured Triangles","children":[{"name":"test_random","uid":"badb2c1a8c5e2d2d","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"68fbe283acac1b6a","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_triangle","uid":"96938210802b960f","parentUid":"e662684f2a3dbc75f5a11cc33db97045","status":"passed","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"e662684f2a3dbc75f5a11cc33db97045"},{"name":"Always perfect","children":[{"name":"Testing check_root function","uid":"cbb9443875889585","parentUid":"4c73d309f91973cd0ea5dcd62967d275","status":"passed","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"4c73d309f91973cd0ea5dcd62967d275"},{"name":"Computer problem series #1: Fill the Hard Disk Drive","children":[{"name":"Testing 'save' function: positive","uid":"f0d7d5d837d1a81d","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: negative","uid":"69d8ca152b73c452","parentUid":"63d250dff8020b8676d1253683b70ce9","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"63d250dff8020b8676d1253683b70ce9"},{"name":"Fun with lists: length","children":[{"name":"Testing length function","uid":"e0dd8dfaed76aa75","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"e7ac97a954c5e722","parentUid":"d43fade2d388854f74dcf379c2d20b78","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]}],"uid":"d43fade2d388854f74dcf379c2d20b78"},{"name":"The museum of incredible dull things","children":[{"name":"'multiply' function verification: lists with multiple digits","uid":"d2af0876e7f45a7f","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"ae87022eb9b205bd","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"6f178467aa4ed9b7","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"555817f2fd5ba68f","parentUid":"27f931848cb4802b2a474210e0697350","status":"passed","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"27f931848cb4802b2a474210e0697350"},{"name":"Simple Fun #152: Invite More Women?","children":[{"name":"Testing invite_more_women function (positive)","uid":"4a970025f2147b3a","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (negative)","uid":"32eaf956310a89b7","parentUid":"823b0234cb443c8160ca0aa12cc3b9e7","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"823b0234cb443c8160ca0aa12cc3b9e7"},{"name":"Sort Out The Men From Boys","children":[{"name":"Testing men_from_boys function","uid":"f4e7ccb7c6ccb848","parentUid":"d4c75bd412ea18140891c19073d6e992","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"d4c75bd412ea18140891c19073d6e992"},{"name":"Sum of two lowest positive integers","children":[{"name":"Two smallest numbers in the start of the list","uid":"2fa689144ccb2725","parentUid":"5191e3901298ceecab4d95e059bd1166","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"5191e3901298ceecab4d95e059bd1166"}],"uid":"5446f5bb24a3f2ec1f4ba91eec8eabfb"},{"name":"String","children":[{"name":"Help Bob count letters and digits.","children":[{"name":"Testing count_letters_and_digits function","uid":"5488ed1b45d5018a","parentUid":"2c812329d9b34f7fcedf688bc9c33806","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing count_letters_and_digits function","uid":"ead644ae8ee031c3","parentUid":"2c812329d9b34f7fcedf688bc9c33806","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"2c812329d9b34f7fcedf688bc9c33806"},{"name":"Basic Math (Add or Subtract)","children":[{"name":"Testing calculate function","uid":"b0395834a1dc7266","parentUid":"759f5a63eedf64056de57d9ba7da1ecd","status":"passed","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"759f5a63eedf64056de57d9ba7da1ecd"},{"name":"Disemvowel Trolls","children":[{"name":"a and b are equal","uid":"cef1ed2aef537de7","parentUid":"daba4c1f34c45d24f142c5f0651610dc","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"daba4c1f34c45d24f142c5f0651610dc"},{"name":"Find the longest gap!","children":[{"name":"Testing gap function","uid":"8caf8fe76e46aa0f","parentUid":"e445cfef9f4ad4f0a5d82d30fe3de85e","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"e445cfef9f4ad4f0a5d82d30fe3de85e"},{"name":"Jaden Casing Strings","children":[{"name":"Testing toJadenCase function (positive)","uid":"ec0c7de9a70a5f5e","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (negative)","uid":"e4473b95f40f5c92","parentUid":"18a4a29817eda84bac36650c75c4d058","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"18a4a29817eda84bac36650c75c4d058"},{"name":"Isograms","children":[{"name":"Testing 'is_isogram' function","uid":"af16ce1f4d774662","parentUid":"faa36e70ee4c32100d502e415a4252f1","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"faa36e70ee4c32100d502e415a4252f1"},{"name":"Password validator","children":[{"name":"Testing password function","uid":"49244d740987433","parentUid":"fb554c589af927337f0c8f9532d32e3c","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"fb554c589af927337f0c8f9532d32e3c"},{"name":"Pull your words together, man!","children":[{"name":"Testing 'solution' function","uid":"5af3592e93b232bc","parentUid":"ef34507a23ea0c36af88ede70da6947d","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","ALGORITHMS"]}],"uid":"ef34507a23ea0c36af88ede70da6947d"},{"name":"Significant Figures","children":[{"name":"Testing number_of_sigfigs function","uid":"230fd42f20a11e18","parentUid":"03e764d2f4b4d4196b355927923c8614","status":"passed","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","ALGORITHMS"]}],"uid":"03e764d2f4b4d4196b355927923c8614"},{"name":"Substituting Variables Into Strings: Padded Numbers","children":[{"name":"Testing 'solution' function","uid":"95500b18da61d76","parentUid":"3474094828ebf15497f0921cd9a35147","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"3474094828ebf15497f0921cd9a35147"},{"name":"The First Non Repeated Character In A String","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"cd56af2e749c4e8a","parentUid":"9a0c160871c69941729fb974987bc16e","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"9a0c160871c69941729fb974987bc16e"},{"name":"Valid Parentheses","children":[{"name":"Simple test for empty string.","uid":"78aec59881bd461e","parentUid":"d3d74567892a9ddef1b5a8be0cd68b79","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for invalid parentheses","uid":"f55783c4fa90131e","parentUid":"d3d74567892a9ddef1b5a8be0cd68b79","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for invalid large string","uid":"d0cba34627dad034","parentUid":"d3d74567892a9ddef1b5a8be0cd68b79","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for valid parentheses","uid":"4990a9f9fb7d9809","parentUid":"d3d74567892a9ddef1b5a8be0cd68b79","status":"passed","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for valid large string","uid":"9cc2024d730e5f8a","parentUid":"d3d74567892a9ddef1b5a8be0cd68b79","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]}],"uid":"d3d74567892a9ddef1b5a8be0cd68b79"},{"name":"V A P O R C O D E","children":[{"name":"Testing 'vaporcode' function","uid":"52f852c4238fea22","parentUid":"3e00c2c35d282154598febaf022db8e7","status":"passed","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3e00c2c35d282154598febaf022db8e7"}],"uid":"d4da4c23abf8c4d8eef4fe720601ce83"},{"name":"Addition","children":[{"name":"Sum of Numbers","children":[{"name":"a or b is negative","uid":"f74116cee1d73fd7","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"91c1d8a1fc37f84","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a and b are equal","uid":"8146fd50051ac96b","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"25c9ba69d5ac48c6","parentUid":"9f4cd4d9ae062c7d33135e3883b0057a","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"9f4cd4d9ae062c7d33135e3883b0057a"}],"uid":"4496293ba8855eb1ec80d1040984b1e2"},{"name":"Math","children":[{"name":"Easy Line","children":[{"name":"Testing easy_line function","uid":"5238b22fc20ccda9","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc_combinations_per_row function","uid":"d9d827d0af3ba710","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"87b0b5de93d5cb12","parentUid":"e849c4a044a61900d11b3ed49f285272","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e849c4a044a61900d11b3ed49f285272"},{"name":"Share prices","children":[{"name":"Testing share_price function","uid":"24f0384efd85ae74","parentUid":"5215ad6eb474a73c045aec07a6a3c16b","status":"passed","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"5215ad6eb474a73c045aec07a6a3c16b"},{"name":"Sum of odd numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"69f67038b11a4861","parentUid":"96a0e38f9494e0fc9a8670b38935b4ea","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"96a0e38f9494e0fc9a8670b38935b4ea"},{"name":"Sum of Triangular Numbers","children":[{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"f06328bb4646abe9","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"690df5b9e2e97d3","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"9b651a3e27842d38","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"ad642268f112be60","parentUid":"b4711af327de2eb768048b3a4d56d9cd","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"b4711af327de2eb768048b3a4d56d9cd"}],"uid":"68a1252a28be3460cab5153c66bd568d"},{"name":"Formatting","children":[{"name":"Formatting decimal places #1","children":[{"name":"Testing two_decimal_places function","uid":"8db7c8bf0abe07bc","parentUid":"ed7e6642b4a33579cc2bdfb50ee94265","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"ed7e6642b4a33579cc2bdfb50ee94265"}],"uid":"709fbb67e44c72d83fee5d0a070ddc80"},{"name":"Calculation","children":[{"name":"Simple Fun #74: Growing Plant","children":[{"name":"Testing growing_plant function","uid":"4d64a30c387b7743","parentUid":"a1f1a4f06f915307bd30eb815c06d484","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"a1f1a4f06f915307bd30eb815c06d484"},{"name":"Sum of powers of 2","children":[{"name":"powers function should return an array of unique numbers","uid":"823dff07664aaa4","parentUid":"960355c3065d0a8fd09850e2f55d163e","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"960355c3065d0a8fd09850e2f55d163e"}],"uid":"257f1cf1993b14fa7bb757c26ba5222d"},{"name":"Classes","children":[{"name":"Make Class","children":[{"name":"Testing make_class function","uid":"a088624abb606e0e","parentUid":"3b2aae0f9b8872133d2bd9efdc9c6f5c","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]}],"uid":"3b2aae0f9b8872133d2bd9efdc9c6f5c"}],"uid":"be6fd0474b59166886b255e74a2356d3"},{"name":"Control Flow","children":[{"name":"Maximum Multiple","children":[{"name":"Testing max_multiple function","uid":"971c2aa5dd36f62c","parentUid":"7d5b0650b07aa9ee47f6ab5bcd539db7","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"7d5b0650b07aa9ee47f6ab5bcd539db7"}],"uid":"c0d2ddf6400082082f4d7b3f3a8b16e4"},{"name":"Flow Control","children":[{"name":"Powers of 3","children":[{"name":"Testing largestPower function","uid":"218b156daee27f08","parentUid":"8cade17d59deac3e8524008d95e7a24e","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"8cade17d59deac3e8524008d95e7a24e"}],"uid":"3dea78a9b2652566a6e60d714774d7cd"},{"name":"Square Calculation","children":[{"name":"You're a square","children":[{"name":"Square numbers (positive)","uid":"5b36ed636679609b","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"33789c02e7e07041","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"eb8f6057b9598daa","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"c8680b20dd7e19d5","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a1e3818ccb62ed24","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"30779503c72bcec6","parentUid":"bae175df64710ffa217b09c3916cddc7","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"bae175df64710ffa217b09c3916cddc7"}],"uid":"b7ab3783083060fd53ed586261dbba9c"}],"uid":"34def7811028a87608f001c322f01caa"},{"name":"5 kyu","children":[{"name":"Lists","children":[{"name":"Sports League Table Ranking","children":[{"name":"Testing compute_ranks","uid":"ec1f79d5effe1aa9","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing compute_ranks","uid":"213536a8a5597e91","parentUid":"a80a676b61e8b22aa90df1fbb2db3ee3","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"a80a676b61e8b22aa90df1fbb2db3ee3"},{"name":"Directions Reduction","children":[{"name":"Testing dir_reduc function","uid":"d49eccd60ce84feb","parentUid":"d7aeecd3e6dad29a93096b98488a8c32","status":"passed","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"d7aeecd3e6dad29a93096b98488a8c32"},{"name":"Fibonacci Streaming","children":[{"name":"Testing all_fibonacci_numbers function","uid":"315e825b7f114d5b","parentUid":"0ec66620f8f6f63e5c0e8dd7d717dffd","status":"passed","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"0ec66620f8f6f63e5c0e8dd7d717dffd"},{"name":"Find the safest places in town","children":[{"name":"Testing agents_cleanup function","uid":"1fb0e4ddfae0bf06","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"506e0ee504d23a05","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"be79a08ed18e426","parentUid":"f550f2f3098a33ec76e3019832d5e95b","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"f550f2f3098a33ec76e3019832d5e95b"},{"name":"Find the smallest","children":[{"name":"test_smallest","uid":"7ea8a8dc382128a4","parentUid":"b7bb57861f66f1989d7310a4bd7a79a1","status":"skipped","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b7bb57861f66f1989d7310a4bd7a79a1"},{"name":"flatten()","children":[{"name":"Testing flatten function","uid":"c8d9a4d573dbda2b","parentUid":"17011b3785f2c2833cb7504bb858535c","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"17011b3785f2c2833cb7504bb858535c"},{"name":"Moving Zeros To The End","children":[{"name":"Testing move_zeros function","uid":"ac824f903545a6e7","parentUid":"2d85e5edba7b415dbb19fb42fc6c89f3","status":"passed","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"2d85e5edba7b415dbb19fb42fc6c89f3"},{"name":"Tic-Tac-Toe Checker","children":[{"name":"Testing done_or_not function","uid":"5b5df6c66b23ba75","parentUid":"d9f42f5588eee9807960d01641022c53","status":"passed","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"d9f42f5588eee9807960d01641022c53"}],"uid":"7ef02e8cf80e94559d747e5a5ffbd686"},{"name":"String","children":[{"name":"Count IP Addresses","children":[{"name":"test_ips_between","uid":"43578fd4f74ce5d9","parentUid":"edc68bf1f1210cb26a97f88b1b0da928","status":"skipped","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"edc68bf1f1210cb26a97f88b1b0da928"},{"name":"Alphabet wars - nuclear strike","children":[{"name":"Testing alphabet_war function","uid":"2de9285990285353","parentUid":"dc2a866fec715a110b5bf422c86398ca","status":"passed","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","EXPRESSIONS","REGULAR","DECLARATIVE","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"dc2a866fec715a110b5bf422c86398ca"},{"name":"Extract the domain name from a URL","children":[{"name":"Testing domain_name function","uid":"31ce0fdb81c2daf6","parentUid":"4cdd4dbb9d06fcf3da672dfaa704b94a","status":"passed","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"4cdd4dbb9d06fcf3da672dfaa704b94a"},{"name":"First non-repeating character","children":[{"name":"Testing first_non_repeating_letter function","uid":"4d53eb58d77047e8","parentUid":"de082d8abc634300b1e30f12ffe6734c","status":"passed","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"de082d8abc634300b1e30f12ffe6734c"},{"name":"Not very secure","children":[{"name":"Testing alphanumeric function","uid":"19443f8320b2694c","parentUid":"50ee9d4380f72a56c561c8d4eb5328fe","status":"passed","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"50ee9d4380f72a56c561c8d4eb5328fe"},{"name":"Simple Pig Latin","children":[{"name":"Testing pig_it function","uid":"22bb7ddce4971121","parentUid":"7de5081a9142a7f1d22684beb25b741b","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"7de5081a9142a7f1d22684beb25b741b"},{"name":"String incrementer","children":[{"name":"Testing increment_string function","uid":"9ba260a0149e6341","parentUid":"df5d4d9d07af61a1c5dee0c106a4b74a","status":"passed","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"df5d4d9d07af61a1c5dee0c106a4b74a"},{"name":"The Hashtag Generator","children":[{"name":"Testing 'generate_hashtag' function","uid":"3f2e19b818fd15f5","parentUid":"78dabab12f0ed4a496f819a74897b7c2","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"78dabab12f0ed4a496f819a74897b7c2"},{"name":"Where my anagrams at?","children":[{"name":"Testing anagrams function","uid":"d2acdc5e027859f4","parentUid":"bdeee8c93559dd06743701cce90df37c","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"bdeee8c93559dd06743701cce90df37c"}],"uid":"df3bfcb3365d909e3c3e7988c65693cb"},{"name":"Math","children":[{"name":"Diophantine Equation","children":[{"name":"test_solution_basic","uid":"6c1e65f294db5f89","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"4df2e31ca734bf47","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c62025a79b33eb3","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"ec58e61448a9c6a8","parentUid":"5ce5d1790a16984bcdf81bfbd7c90f3a","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"5ce5d1790a16984bcdf81bfbd7c90f3a"},{"name":"Human Readable Time","children":[{"name":"Testing make_readable function","uid":"a92222b0b7f4d601","parentUid":"abc08f1592fdf55ebcf84c17b5b7270b","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"abc08f1592fdf55ebcf84c17b5b7270b"},{"name":"Josephus Survivor","children":[{"name":"test_josephus_survivor","uid":"e08a8a15da9b3ad","parentUid":"2e80716327f2e53affdbbd6f2e9424d5","status":"skipped","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"2e80716327f2e53affdbbd6f2e9424d5"},{"name":"Number of trailing zeros of N!","children":[{"name":"Testing zeros function","uid":"40b9b78f2d258cf9","parentUid":"bb16b76c19f4b3ae4654a3192393d33f","status":"passed","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"bb16b76c19f4b3ae4654a3192393d33f"}],"uid":"59aec5ac210e00f2a7eb9f790be01699"},{"name":"Control Flow","children":[{"name":"Did I Finish my Sudoku?","children":[{"name":"Testing done_or_not function","uid":"a90239b6ef90f6a6","parentUid":"68d793f4711a84c29b23c36264e398f3","status":"passed","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]}],"uid":"68d793f4711a84c29b23c36264e398f3"}],"uid":"faac866a865222fe5f2791add48593c2"},{"name":"Optimization","children":[{"name":"Integers: Recreation One","children":[{"name":"Testing list_squared function","uid":"f39847014d01db85","parentUid":"194eb219c9d8417faeba6491be196ce5","status":"passed","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]}],"uid":"194eb219c9d8417faeba6491be196ce5"}],"uid":"bb1d4ae102373a78a957d0394a04ffbe"},{"name":"Memoization","children":[{"name":"Master your primes: sieve with memoization","children":[{"name":"Testing is_prime function","uid":"8eb80b15a6d6b848","parentUid":"2c3772a14d6a05b2f628a27d6cb8f142","status":"passed","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]}],"uid":"2c3772a14d6a05b2f628a27d6cb8f142"},{"name":"Sum of Pairs","children":[{"name":"Testing done_or_not function","uid":"72c2edc2055d0da7","parentUid":"ee841c30eebb4276a39fb42e03fe3f4c","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"ee841c30eebb4276a39fb42e03fe3f4c"}],"uid":"e7f3896ca4fb187537f1041c05e5cc8e"},{"name":"Validation","children":[{"name":"Valid Parentheses","children":[{"name":"Testing valid_parentheses function","uid":"ee5910cfe65a88ee","parentUid":"e985725cc05687bdde0ddb9ecde0e3da","status":"passed","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]}],"uid":"e985725cc05687bdde0ddb9ecde0e3da"}],"uid":"b6b45b5a92347a9c63bfb3b09b345802"}],"uid":"2c485802e45bfffcff54bba714c94c3c"},{"name":"2 kyu","children":[{"name":"String","children":[{"name":"Evaluate mathematical expression","children":[{"name":"Testing calc function","uid":"26189d3cfda1b8d1","parentUid":"fdfca1ff8a83ac2e97b42cc58848493c","status":"passed","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"fdfca1ff8a83ac2e97b42cc58848493c"}],"uid":"dc898de6e59c04826af3b2063399801f"}],"uid":"1c397fed37ec222ba2e7e57019a1fd8a"},{"name":"3 kyu","children":[{"name":"Lists","children":[{"name":"Battleship field validator","children":[{"name":"Testing validate_battlefield function","uid":"c515ef635fa26df1","parentUid":"f8f5f4d0c0cde322e11dd73c0dcfb695","status":"passed","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"f8f5f4d0c0cde322e11dd73c0dcfb695"},{"name":"Make a spiral","children":[{"name":"Testing spiralize function","uid":"7aa3fbfc8218c54e","parentUid":"3bc8ebc89d5761dae7034183898d85a0","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]}],"uid":"3bc8ebc89d5761dae7034183898d85a0"}],"uid":"2a5dd713a10a61840a1bfc279b739534"},{"name":"String","children":[{"name":"Line Safari - Is that a line?","children":[{"name":"test_line_negative","uid":"482cc1b462231f44","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"fb676676627eae5f","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"skipped","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Walker class - position property from negative grids","uid":"a81b8ca7a7877717","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"eb94d03877c16bb4","parentUid":"1475e6404d8c91a05d6533a794eebdf2","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"1475e6404d8c91a05d6533a794eebdf2"},{"name":"Calculator","children":[{"name":"Testing Calculator class","uid":"d06d6d8db945d4d7","parentUid":"80aca0fae2c236e80f553ddb9c7e6dfc","status":"passed","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"80aca0fae2c236e80f553ddb9c7e6dfc"},{"name":"Rail Fence Cipher: Encoding and Decoding","children":[{"name":"Testing Encoding functionality","uid":"644c808df55456e9","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Decoding functionality","uid":"ca1eccae180a083e","parentUid":"0541111ff512a02bf5a9b1e9b19b282e","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0541111ff512a02bf5a9b1e9b19b282e"}],"uid":"113a893cb5c746de49c827fc45c98d87"}],"uid":"956182e9935ac64fc0622b60cfe4823a"},{"name":"4 kyu","children":[{"name":"String","children":[{"name":"Human readable duration format","children":[{"name":"Testing format_duration","uid":"b92f0db6c4ee4ff0","parentUid":"1be85cde8c2ba0404aa8e2196e46d50f","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","DATES/TIME","FORMATS","ALGORITHMS"]}],"uid":"1be85cde8c2ba0404aa8e2196e46d50f"},{"name":"Most frequently used words in a text","children":[{"name":"Testing top_3_words function","uid":"f2a1a9d494a0859","parentUid":"11ce57f3834ffe237e1a50321df6d4a6","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"11ce57f3834ffe237e1a50321df6d4a6"},{"name":"Next smaller number with the same digits","children":[{"name":"Testing next_smaller function","uid":"c1f90fc4edd70bea","parentUid":"160376d866618ae836bd32ec64faca71","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"160376d866618ae836bd32ec64faca71"},{"name":"Permutations","children":[{"name":"test_permutations","uid":"5a5d0954bb249b69","parentUid":"a747d5b0c0952ec15c0319f42a6f0056","status":"skipped","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"a747d5b0c0952ec15c0319f42a6f0056"},{"name":"Next bigger number with the same digits","children":[{"name":"Testing next_bigger function","uid":"1d49801d4e6b4921","parentUid":"cb6f0afe95fea084b79420d224c1d355","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"cb6f0afe95fea084b79420d224c1d355"},{"name":"Range Extraction","children":[{"name":"Testing solution function","uid":"913fbd5c2da31308","parentUid":"fe470f4ad105c0b3c71d0ae3c749dbe8","status":"passed","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","STRING","ALGORITHMS"]}],"uid":"fe470f4ad105c0b3c71d0ae3c749dbe8"},{"name":"Strings Mix","children":[{"name":"Testing 'mix' function","uid":"f87e2580dd045df5","parentUid":"1bba014287fd1bcae043cc2e207189cd","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"1bba014287fd1bcae043cc2e207189cd"},{"name":"Strip Comments","children":[{"name":"Testing 'solution' function","uid":"8da8c6de16bb179d","parentUid":"058d543c25a2831089448b4d681741f6","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"058d543c25a2831089448b4d681741f6"}],"uid":"a4960ac8cae81ce5af7512bbc51871b2"},{"name":"Lists","children":[{"name":"Snail","children":[{"name":"Testing 'snail' function","uid":"43a52f18fb3b8136","parentUid":"a30deab117bc9a57d3702721339bfb9d","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"a30deab117bc9a57d3702721339bfb9d"},{"name":"Sum by Factors","children":[{"name":"Testing sum_for_list function","uid":"af3a43fc31649664","parentUid":"6b6ded351d6f491e4b53926d4dd457b7","status":"passed","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"6b6ded351d6f491e4b53926d4dd457b7"}],"uid":"d8170b5b6f3f14533b892a09e5c57a66"},{"name":"Validation","children":[{"name":"Sudoku Solution Validator","children":[{"name":"Testing validSolution","uid":"6c8559b634a76bd8","parentUid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]}],"uid":"624ae0c3fce13c1e9e9a4baf3fbe7ecc"}],"uid":"55d453de83201196eb9fdfd0711643b7"},{"name":"Classes","children":[{"name":"The Greatest Warrior","children":[{"name":"Testing Battle method","uid":"c678c03e12583e98","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"8c4575be21ff0ded","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"d6520bfb9bc036e4","parentUid":"25f6d563b3f222fd3637ec178f1b3829","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"25f6d563b3f222fd3637ec178f1b3829"}],"uid":"1b88ab8e8506eaa709573095130a441e"},{"name":"Aggregations","children":[{"name":"Sum of Intervals","children":[{"name":"Testing sum_of_intervals function","uid":"99e95613ed424b35","parentUid":"06a4428b7cdbcff87274cd6f22fa54dd","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]}],"uid":"06a4428b7cdbcff87274cd6f22fa54dd"}],"uid":"0bb31737bbb23dc104cf3a5f710e9370"},{"name":"Control Flow","children":[{"name":"Validate Sudoku with size `NxN`","children":[{"name":"Testing Sudoku class","uid":"f51b45f6ebc18bdf","parentUid":"c01e6a39d1400d037d3131c57ebbb93a","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"c01e6a39d1400d037d3131c57ebbb93a"}],"uid":"4a7b305292be7b9d4793c52267b512fe"}],"uid":"e694a19aa064ac2844c4d1534344085d"},{"name":"6 kyu","children":[{"name":"Math","children":[{"name":"A Rule of Divisibility by 13","children":[{"name":"Testing 'thirt' function","uid":"a5961784f4ddfa34","parentUid":"718ab2ed3f1b431b3e3d14146ec635f1","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"718ab2ed3f1b431b3e3d14146ec635f1"},{"name":"Casino chips","children":[{"name":"Testing solve function","uid":"c1393951861e51a9","parentUid":"d5064ccd9c6c1e34ea0c15d551c2bd3b","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"d5064ccd9c6c1e34ea0c15d551c2bd3b"},{"name":"Disease Spread","children":[{"name":"Testing epidemic function","uid":"8572ffe92ddcaa11","parentUid":"333c233dc8ad5537a4cfc85c54979090","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"333c233dc8ad5537a4cfc85c54979090"},{"name":"No arithmetic progressions","children":[{"name":"test_sequence","uid":"21221b4a48a21055","parentUid":"b09c3af5fb8aaf78abea51876ede4d01","status":"skipped","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"b09c3af5fb8aaf78abea51876ede4d01"},{"name":"Number Zoo Patrol","children":[{"name":"Testing the 'find_missing_number' function","uid":"8878dccf56d36ba6","parentUid":"376ccb808f76533b10eba541be48e21d","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"376ccb808f76533b10eba541be48e21d"},{"name":"Sum of Digits / Digital Root","children":[{"name":"Testing digital_root function","uid":"2571a6d17171a809","parentUid":"9b5481bda4f939276ac60d69f00ef2b1","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"9b5481bda4f939276ac60d69f00ef2b1"}],"uid":"97ae4d195d4697dc1414e14d9a974532"},{"name":"Lists","children":[{"name":"Array.diff","children":[{"name":"Testing array_diff function","uid":"80b7e762ad299367","parentUid":"578102e0bcd7e517eaaa8367fc9a0db3","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"578102e0bcd7e517eaaa8367fc9a0db3"},{"name":"Array to HTML table","children":[{"name":"Testing to_table function","uid":"ece5bd16ef8bbe52","parentUid":"a8f585325dda0d7a9718a81260508f36","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"a8f585325dda0d7a9718a81260508f36"},{"name":"Find the odd int","children":[{"name":"Find the int that appears an odd number of times","uid":"4cc7d24b84024142","parentUid":"921f609bd89f13186462fe080fdb4c30","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"921f609bd89f13186462fe080fdb4c30"},{"name":"Pyramid Array","children":[{"name":"Testing the 'pyramid' function","uid":"83ae1189d3669b33","parentUid":"48057e40161fff87e664b61abf03420d","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"48057e40161fff87e664b61abf03420d"},{"name":"ROTATE THE LETTERS OF EACH ELEMENT","children":[{"name":"Testing the 'group_cities' function","uid":"1c66d03c44b01cf6","parentUid":"b0101bfcf3048ad4213cf0362a23d781","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]}],"uid":"b0101bfcf3048ad4213cf0362a23d781"},{"name":"Sort the odd","children":[{"name":"Testing the 'sort_array' function","uid":"4e3f7ea473e691d3","parentUid":"b7cf9896298b070623c99d8c29d9079f","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"b7cf9896298b070623c99d8c29d9079f"}],"uid":"86902b68b922e81b550870f6a0b941aa"},{"name":"String","children":[{"name":"Binary to Text (ASCII) Conversion","children":[{"name":"Testing binary_to_string function","uid":"1cbe6a610fbdfd6","parentUid":"a38a360357cb186b186e0b296da9b925","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"a38a360357cb186b186e0b296da9b925"},{"name":"Character frequency","children":[{"name":"All chars are in mixed case","uid":"293f48722d8450df","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"5bee7e36f6e76857","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"da807d1d651bf07b","parentUid":"f8b513a8b5a53df05fce95bbbf442892","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"f8b513a8b5a53df05fce95bbbf442892"},{"name":"Count letters in string","children":[{"name":"Testing 'letter_count' function","uid":"4e3fc5966ad47411","parentUid":"6fcc343100ec1c575ec6d0ef4e788718","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"6fcc343100ec1c575ec6d0ef4e788718"},{"name":"Duplicate Encoder","children":[{"name":"Testing duplicate_encode function","uid":"157d23c0aff9e075","parentUid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8","status":"passed","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"5bd9d9301a7a3ee8b524ddbbbb8ecce8"},{"name":"First character that repeats","children":[{"name":"String with no duplicate chars","uid":"1d2cfb77eef4360e","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"777b1d9b55eb3ae9","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"f5898a8468d0cd4","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"f83b86d7cbc0ffa1","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"aa7d2e5e86b66673","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"1137568979e0ed3a","parentUid":"04b320738417a6f78ac398c1b2c47f58","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"04b320738417a6f78ac398c1b2c47f58"},{"name":"Format a string of names like 'Bart, Lisa & Maggie'.","children":[{"name":"String with no duplicate chars","uid":"3d9d773987a3ac09","parentUid":"be8c6e54bd224088968db39e9d9b8af2","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"be8c6e54bd224088968db39e9d9b8af2"},{"name":"Numericals of a String","children":[{"name":"Testing 'numericals' function","uid":"db9b592f660c3c08","parentUid":"1faccdd4fe3b7693d21d3126afbd25eb","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"1faccdd4fe3b7693d21d3126afbd25eb"},{"name":"Permute a Palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"f74a1a4c19be5344","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"469fb46dbe1a31d","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"864ee426bf422b09","parentUid":"b375468b60dbf317881aa846feedfeb0","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"b375468b60dbf317881aa846feedfeb0"},{"name":"String subpattern recognition I","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"c1326d9a3ad9ddfb","parentUid":"363bbcd706a423ee9d09af41dbed39ea","status":"passed","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"363bbcd706a423ee9d09af41dbed39ea"},{"name":"String subpattern recognition II","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"52e55a2445119fdd","parentUid":"02ab0c9dd970c68e754366e49479f916","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"02ab0c9dd970c68e754366e49479f916"},{"name":"String subpattern recognition III","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"b4c3bd7788c9f57d","parentUid":"393bfd608cfae3d1eb6343cc7a5011db","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"393bfd608cfae3d1eb6343cc7a5011db"},{"name":"String transformer","children":[{"name":"Testing string_transformer function","uid":"101b76d3a18bb4c3","parentUid":"c193efe1258171de72ef3865b9a0d0b2","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"c193efe1258171de72ef3865b9a0d0b2"},{"name":"Your order, please","children":[{"name":"Testing 'order' function","uid":"7fd83f8828bfb391","parentUid":"d0aacbe991e16be7e43f1ad4cfe0ebbd","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d0aacbe991e16be7e43f1ad4cfe0ebbd"},{"name":"Who likes it?","children":[{"name":"Testing likes function","uid":"5ff9cf70b259ca21","parentUid":"c1a33c56f271e7bb22ae30b491e74353","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"c1a33c56f271e7bb22ae30b491e74353"}],"uid":"857e38a63cc606ba052f3d4d56ee1bf5"},{"name":"Factorial","children":[{"name":"Color Choice","children":[{"name":"Testing checkchoose function","uid":"c9c9a6a75f3a249f","parentUid":"9ea3760cebf785c3a8d655f8b8a3a20c","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"9ea3760cebf785c3a8d655f8b8a3a20c"}],"uid":"f3a2e7e2aa1d6d2d69cd3a8c726545ac"},{"name":"Algorithms","children":[{"name":"Decipher this!","children":[{"name":"Testing decipher_this function","uid":"afa4196b56245753","parentUid":"f9921df9245e93fe9e9a8be25b00332e","status":"passed","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"f9921df9245e93fe9e9a8be25b00332e"},{"name":"Easy Diagonal","children":[{"name":"Testing easy_diagonal function","uid":"48f19bb58dd1432f","parentUid":"ac4d1f7f759204dd92f1bedad588e779","status":"passed","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"ac4d1f7f759204dd92f1bedad588e779"},{"name":"Encrypt this!","children":[{"name":"Testing encrypt_this function","uid":"984b8a80ce69773d","parentUid":"6fa497202340a32e0a130fcace2ebd9b","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"6fa497202340a32e0a130fcace2ebd9b"},{"name":"Help the bookseller !","children":[{"name":"Testing stock_list function","uid":"aa0fd3e8d8009a95","parentUid":"091c2a25c1cc1307887d8f3e40051172","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"091c2a25c1cc1307887d8f3e40051172"},{"name":"Multiples of 3 or 5","children":[{"name":"Testing the 'solution' function","uid":"d0b6dccad411741e","parentUid":"8ad2093e605a9a9bd873e8139907381c","status":"passed","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"8ad2093e605a9a9bd873e8139907381c"},{"name":"Potion Class 101","children":[{"name":"Testing Potion class","uid":"25eb791ee007f15b","parentUid":"90d6a5db408f548c6b4842692de49031","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"90d6a5db408f548c6b4842692de49031"},{"name":"Row of the odd triangle","children":[{"name":"Testing odd_row function","uid":"733b2334645f5c42","parentUid":"72395c82c5f8720eeedb488f628db42d","status":"passed","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"72395c82c5f8720eeedb488f628db42d"},{"name":"Scheduling (Shortest Job First or SJF)","children":[{"name":"Testing 'shortest_job_first(' function","uid":"87b2e8453406c3f","parentUid":"84a5fe3bfc444bfb52c89833f8b6b28e","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"84a5fe3bfc444bfb52c89833f8b6b28e"},{"name":"Unique In Order","children":[{"name":"Testing the 'unique_in_order' function","uid":"b3654581f89b5576","parentUid":"4c3a7e6ccf55b0185ff54de68203ee96","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4c3a7e6ccf55b0185ff54de68203ee96"},{"name":"Sums of Parts","children":[{"name":"Testing 'parts_sums' function","uid":"902288cde0f2109a","parentUid":"f2707c42d3822b9eaf4ba0c414ab6249","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"f2707c42d3822b9eaf4ba0c414ab6249"},{"name":"Vasya - Clerk","children":[{"name":"Testing tickets function","uid":"d20d06b45fb65ddb","parentUid":"cd063de6ba717e37f3b2d2c983dbdaa7","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"cd063de6ba717e37f3b2d2c983dbdaa7"},{"name":"Valid Braces","children":[{"name":"Testing the 'valid_braces' function","uid":"e6b67890527d37e6","parentUid":"fda66cb9e919f6eb1da529d16b4523e0","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"fda66cb9e919f6eb1da529d16b4523e0"}],"uid":"4bdaa6cb7a367c7c5896b8cb0162b676"},{"name":"Classes","children":[{"name":"DefaultList","children":[{"name":"Testing 'DefaultList' class: extend","uid":"f56ae5fa4f278c43","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: append","uid":"44141b5da145c70a","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"9e6eb35888cc4f59","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"67535419d885cbd9","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a6a651d904577cf4","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"3ff093181cede851","parentUid":"8a24f091ab8ff2e6405b466c1e4a82b3","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"8a24f091ab8ff2e6405b466c1e4a82b3"}],"uid":"d1c03c9ab51dd09075f7a945d20660c1"},{"name":"Numbers","children":[{"name":"Pokemon Damage Calculator","children":[{"name":"Testing calculate_damage function","uid":"4223e436b2847599","parentUid":"70bd4a49f8dcba99c129a214bc1f7f1c","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"70bd4a49f8dcba99c129a214bc1f7f1c"}],"uid":"eaa4d90dd79abb31c68174a0eed94d16"}],"uid":"c1da5957fc38e62f642ed11281caa9f6"},{"name":"8 kyu","children":[{"name":"String","children":[{"name":"altERnaTIng cAsE <=> ALTerNAtiNG CaSe","children":[{"name":"Testing to_alternating_case function","uid":"cb005e45e7b312b5","parentUid":"69e8acca732c894084fd354dbc91af89","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"69e8acca732c894084fd354dbc91af89"},{"name":"Holiday VI - Shark Pontoon","children":[{"name":"Testing shark function (positive)","uid":"ffb8e8f4eed50d14","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"a5a7f52be4bf7369","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"a4cb6a94c77f28ce","parentUid":"be8455f679e4c5dfeb1389f4f818d596","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"be8455f679e4c5dfeb1389f4f818d596"},{"name":"Is it a palindrome?","children":[{"name":"Testing is_palindrome function","uid":"564bcc936cf15d1a","parentUid":"8f11289717d9b0758f27a77b91d8b9be","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8f11289717d9b0758f27a77b91d8b9be"},{"name":"MakeUpperCase","children":[{"name":"Testing make_upper_case function","uid":"e42b69525abdede6","parentUid":"fde1a133ac101865456094a1894d5878","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"fde1a133ac101865456094a1894d5878"},{"name":"Remove String Spaces","children":[{"name":"Test that no_space function removes the spaces","uid":"b4cae88de9afaa55","parentUid":"7bf381cf56721087d18327062fdd78d6","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"7bf381cf56721087d18327062fdd78d6"},{"name":"Remove First and Last Character","children":[{"name":"Testing remove_char function","uid":"6d917e3e4d702f23","parentUid":"4b36c87cfaebb1a5dada03c82230cf72","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]}],"uid":"4b36c87cfaebb1a5dada03c82230cf72"},{"name":"Reversed Strings","children":[{"name":"Test with regular string","uid":"fef6b9be2b6df65c","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"2a3aa78afffa487b","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"e96aee50481acdd6","parentUid":"eedfea5296e1fc15863430cd1b856bcf","status":"passed","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eedfea5296e1fc15863430cd1b856bcf"},{"name":"The Feast of Many Beasts","children":[{"name":"Testing 'feast' function","uid":"5364303890f7a5a1","parentUid":"87a7ec6b6dd7885b87691d5ce7e40249","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"87a7ec6b6dd7885b87691d5ce7e40249"}],"uid":"fb754d63e94d71ee3b8e239cdf831876"},{"name":"Lists","children":[{"name":"Check the exam","children":[{"name":"Testing check_exam function","uid":"23b533c70baf95c9","parentUid":"367a7bc3f244c81d1e748c7c5a555216","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"367a7bc3f244c81d1e748c7c5a555216"},{"name":"Convert a string to an array","children":[{"name":"Testing string_to_array function","uid":"7940a8ba615e27f7","parentUid":"c9703bd4e32ed4d7628d4ae87777aaf7","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"c9703bd4e32ed4d7628d4ae87777aaf7"},{"name":"Count the Monkeys!","children":[{"name":"Testing monkey_count function","uid":"5880c730022f01ee","parentUid":"af241db983f2d0be4c7832f6a37c6a42","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"af241db983f2d0be4c7832f6a37c6a42"},{"name":"Counting sheep...","children":[{"name":"Testing 'count_sheeps' function: bad input","uid":"b5ba84846c075db5","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"4d07449717f6193c","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"14c26803c1139e78","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"a95c24b51d5c9432","parentUid":"0d9ee31fda6603147206b3442510dbc6","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"0d9ee31fda6603147206b3442510dbc6"},{"name":"Enumerable Magic #25 - Take the First N Elements","children":[{"name":"Testing take function","uid":"47e3461a4e252fc1","parentUid":"a7dc141f02b47802ec6f84e7a67e519a","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a7dc141f02b47802ec6f84e7a67e519a"},{"name":"Find the first non-consecutive number","children":[{"name":"Large lists","uid":"f807c10786110eac","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"8a0604fc927a7480","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"f4915582d5908ed3","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"a492c358ecb2902d","parentUid":"9a2c01f6801087b4849d02100d4dc022","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"9a2c01f6801087b4849d02100d4dc022"},{"name":"Logical Calculator","children":[{"name":"AND logical operator","uid":"7250652c2d8bbae5","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"46352cf5111d5c61","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"2a6bb93adc2b9500","parentUid":"1d6c3f09e5599bcec1677f346a53fd07","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"1d6c3f09e5599bcec1677f346a53fd07"},{"name":"My head is at the wrong end!","children":[{"name":"fix_the_meerkat function function verification","uid":"afc8e5dacd30bc41","parentUid":"6a5973ec3fffec10bf086127f91314d3","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"6a5973ec3fffec10bf086127f91314d3"},{"name":"Swap Values","children":[{"name":"Testing swap_values function","uid":"7e7534020c406c41","parentUid":"3f141145b15b0dc287e37b52e3182bb6","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"3f141145b15b0dc287e37b52e3182bb6"},{"name":"Well of Ideas - Easy Version","children":[{"name":"Should return 'I smell a series!'","uid":"d518579b8137712e","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"2c379ae83853bb2a","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"9eaae816682ea6e3","parentUid":"26a8f15fb55204be5eb21d3c53008497","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"26a8f15fb55204be5eb21d3c53008497"},{"name":"A wolf in sheep's clothing","children":[{"name":"Wolf at the end of the queue","uid":"f8789af2e0cead9e","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"9e884f6ea55b7c35","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"e578dac1473f78ec","parentUid":"3d78fc8019d4a8d88990dd06e01ba4ef","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"3d78fc8019d4a8d88990dd06e01ba4ef"}],"uid":"d70fe8a79bbd28a2e0dc34820c5ffcf6"},{"name":"Math","children":[{"name":"Century From Year","children":[{"name":"Testing century function","uid":"2a82791553e70088","parentUid":"392fd3f6c486b67030db126f6508cccd","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"392fd3f6c486b67030db126f6508cccd"},{"name":"Will you make it?","children":[{"name":"Testing zero_fuel function","uid":"3f3a4afa0166112e","parentUid":"7169561ad9c90f6937e263cf368d4ccf","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"7169561ad9c90f6937e263cf368d4ccf"}],"uid":"b573d5c332ef598899ffaba9affa1608"},{"name":"Formatting","children":[{"name":"Formatting decimal places #0","children":[{"name":"Testing two_decimal_places function","uid":"5647d5db4078d707","parentUid":"041ee40aba795a3cc8d5ac64fb36eefd","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"041ee40aba795a3cc8d5ac64fb36eefd"}],"uid":"f2cdb089dac7eeb9475c0e020ae4d5c0"},{"name":"Addition","children":[{"name":"Messi goals function","children":[{"name":"goals function verification","uid":"5496efe2fd3e353","parentUid":"ae435a522f31b90073bb64691f876ef1","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"ae435a522f31b90073bb64691f876ef1"}],"uid":"d43f42050b38efc1a022e563a46f73c1"},{"name":"Calculation","children":[{"name":"Grasshopper - Check for factor","children":[{"name":"Testing check_for_factor function: positive flow","uid":"b40f27be3da7edd7","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"873ec1972fa36468","parentUid":"fc85a0fdd38e041cc9f1fed8a98887f2","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"fc85a0fdd38e041cc9f1fed8a98887f2"},{"name":"Keep Hydrated!","children":[{"name":"Testing litres function with various test inputs","uid":"5ac65e8dc17d86a","parentUid":"e2780ca425a66890ffac23135bdeaf50","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"e2780ca425a66890ffac23135bdeaf50"},{"name":"Grasshopper - Terminal game move function","children":[{"name":"move function tests","uid":"5814d63d4b392228","parentUid":"89e01c038c1f2bbdd55902c02930a7c1","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"89e01c038c1f2bbdd55902c02930a7c1"},{"name":"Third Angle of a Triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"28baf5593cc14310","parentUid":"decb75937bbbd3cc190cf903e854c506","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"decb75937bbbd3cc190cf903e854c506"},{"name":"Will there be enough space?","children":[{"name":"STesting enough function","uid":"b59318a9c97ef9f1","parentUid":"a22cb71adee172849fe872229cb52c02","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"a22cb71adee172849fe872229cb52c02"}],"uid":"45b3c2b7add5bb4e71124f88e9bb9e80"},{"name":"Conditions","children":[{"name":"Personalized greeting","children":[{"name":"Verify that greet function returns the proper message","uid":"6b2ccbd851ec600","parentUid":"053875ab71cd94da64903e0ce02235de","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]}],"uid":"053875ab71cd94da64903e0ce02235de"},{"name":"Keep up the hoop","children":[{"name":"Testing hoop_count function (positive test case)","uid":"37fbb0401b01604d","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"ce6714fc18aff8ec","parentUid":"8350740d6b56bed471e19c7c305c3514","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8350740d6b56bed471e19c7c305c3514"}],"uid":"b64b04a59afac9d82f8bd056b1c4dcb7"},{"name":"Loops","children":[{"name":"Grasshopper - Summation","children":[{"name":"Testing 'summation' function","uid":"c8c57e21dd6fea81","parentUid":"e2014f1d530bb2df35398d339641ff42","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"e2014f1d530bb2df35398d339641ff42"}],"uid":"46db6a161fa13ff321d204f919fe1110"},{"name":"Tuple","children":[{"name":"Greek Sort","children":[{"name":"Testing 'greek_comparator' function","uid":"3a516b9dc7b53625","parentUid":"2f3903759aaa8e19cec4647c55baa02d","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"2f3903759aaa8e19cec4647c55baa02d"}],"uid":"89ee363c4b98900b87bdd5c0a5a7e6e9"},{"name":"Date","children":[{"name":"Is your period late","children":[{"name":"Testing period_is_late function (positive)","uid":"5503b0de9149b0f0","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"a1c87b2c2a6c0bb7","parentUid":"cdcf86bc298b5160a3e4c16919251d50","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"cdcf86bc298b5160a3e4c16919251d50"}],"uid":"0d4f39a4c07b78cb2c39dbfcf5d8ae18"},{"name":"Multiplication","children":[{"name":"Multiply","children":[{"name":"'multiply' function verification","uid":"456a7345e9aeb905","parentUid":"5f4c45870777410bc5ec6a653e227ce4","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"5f4c45870777410bc5ec6a653e227ce4"}],"uid":"9234b28bccd7cec338d87073799f941e"},{"name":"Geometry","children":[{"name":"Surface Area and Volume of a Box","children":[{"name":"get_size function tests","uid":"1cc5ce778c99d98","parentUid":"2c3108518f5e4a5308f9038d7646b118","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"2c3108518f5e4a5308f9038d7646b118"}],"uid":"b10ef19cb563753f46c241370b77b508"},{"name":"Boolean","children":[{"name":"L1: Set Alarm","children":[{"name":"Testing set_alarm function","uid":"c50649c997228fe6","parentUid":"9a5a760428d81b51390bd3225e333680","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"9a5a760428d81b51390bd3225e333680"}],"uid":"b982a2b2a443816061b43303c8b24ddb"}],"uid":"e897ee22c2fb08393e12fd9de84c2107"},{"name":"No kyu","children":[{"name":"Utils","children":[{"name":"Testing is_prime util","children":[{"name":"Negative test cases for is_prime function testing","uid":"ad3e6b6eddb975ef","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"5c460b7e756cd57","parentUid":"2d53241e9ad2ed86540a9d7b3ef674c7","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"2d53241e9ad2ed86540a9d7b3ef674c7"},{"name":"Testing gen_primes util","children":[{"name":"Negative test cases for gen_primes function testing","uid":"bb8e119491d2ebc3","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"c245bb8192a35073","parentUid":"fe77bba421870077d5d6e0fa886c7cb5","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"fe77bba421870077d5d6e0fa886c7cb5"}],"uid":"aa645cdd87f620cf58517de6d125709f"}],"uid":"309a3015b55d887bf63688beded010f1"}]} \ No newline at end of file diff --git a/allure-report/data/packages.json b/allure-report/data/packages.json index 19d3bb8ec64..304fc8b95d6 100644 --- a/allure-report/data/packages.json +++ b/allure-report/data/packages.json @@ -1 +1 @@ -{"uid":"83edc06c07f9ae9e47eb6dd1b683e4e2","name":"packages","children":[{"name":"kyu_7","children":[{"name":"coloured_triangles.test_triangle","children":[{"name":"test_random","uid":"a83637127d81f7d9","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"f80f9bf6821c7c25","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_triangle","uid":"2d65aaadaa20d5c2","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"coloured_triangles.test_triangle"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"7f4f9e94ec6d4f1e","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"af6e405f57c78056","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"always_perfect.test_check_root"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a and b are equal","uid":"73a0aa79bef78acd","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"a37b17c93d1df521","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"fb032b53923bc0e9","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"disemvowel_trolls.test_disemvowel_trolls","children":[{"name":"a and b are equal","uid":"f1c4cfcd59974ea","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"disemvowel_trolls.test_disemvowel_trolls"},{"name":"easy_line.test_easyline","children":[{"name":"Testing calc_combinations_per_row function","uid":"5ef0ca25b0e8e9c5","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"c7106989a12e3c0a","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"fb3ce43e36479ba0","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"1ef1cf7383671b63","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: negative","uid":"f0c848519588d2dc","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'save' function: positive","uid":"4bdc75ea73bb042","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"fill_the_hard_disk_drive.test_save"},{"name":"find_the_longest_gap.test_gap","children":[{"name":"Testing gap function","uid":"776a48c95cfacbf7","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"find_the_longest_gap.test_gap"},{"name":"formatting_decimal_places_1.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"611b4f8cf836294a","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"formatting_decimal_places_1.test_two_decimal_places"},{"name":"fun_with_lists_length.test_length","children":[{"name":"Testing length function","uid":"f0d79dba84dbdf82","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function where head = None","uid":"204a2114486cc2f9","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"fun_with_lists_length.test_length"},{"name":"growing_plant.test_growing_plant","children":[{"name":"Testing growing_plant function","uid":"c63189b867db5809","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"growing_plant.test_growing_plant"},{"name":"help_bob_count_letters_and_digits.test_count_letters_and_digits","children":[{"name":"Testing count_letters_and_digits function","uid":"c11bd2bbb0f17cd9","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (negative)","uid":"3cad1df85b3a49c","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"9d90f23892be7ac3","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"3bd61bc704b417e2","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"91ff78dc5a767b91","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"make_class.test_make_class"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"aee4538f6230f980","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"password_validator.test_password"},{"name":"maximum_multiple.test_maximum_multiple","children":[{"name":"Testing max_multiple function","uid":"af5a357d104e13f2","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"f09191f837671677","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"pull_your_words_together_man.test_sentencify"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"a5e3b3442b4ab9dd","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"powers_of_3.test_largest_power"},{"name":"remove_the_minimum.test_remove_the_minimum","children":[{"name":"'multiply' function verification with one element list","uid":"c1ed75effe27f7a1","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with empty list","uid":"c8b2e451486f6a25","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification: lists with multiple digits","uid":"742a65a772f90af2","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with random list","uid":"af191d67a3f53ad3","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"dba3101c45ee1611","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"share_prices.test_share_price"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"a80b9adf611eb67d","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (negative)","uid":"6c5d99461aa2603","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing invite_more_women function (positive)","uid":"ad12195e4f930686","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"simple_fun_152.test_invite_more_women"},{"name":"sort_out_the_men_from_boys.test_men_from_boys","children":[{"name":"Testing men_from_boys function","uid":"547f04beeb8e83b4","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"sort_out_the_men_from_boys.test_men_from_boys"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"d837297408a13c1e","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"substituting_variables_into_strings_padded_numbers.test_solution","children":[{"name":"Testing 'solution' function","uid":"fbbb69f84c1b433f","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"dfb4af6de633e98","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"sum_of_triangular_numbers.test_sum_triangular_numbers","children":[{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"46f01e6c3f72b063","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"281344c06cab651e","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"aac9dbbaca38b054","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"a14fdddc74cd287e","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"sum_of_two_lowest_int.test_sum_two_smallest_numbers","children":[{"name":"Two smallest numbers in the start of the list","uid":"3ea60f3a146e3d51","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"9275e1d85a023003","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"vaporcode.test_vaporcode"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"c7f51c235702ff2b","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Negative numbers","uid":"5cbeef874f8f5965","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"380e12b965b39180","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"f8cfd8001c2b32fd","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"8a85b974bace8b60","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"1c92b73c681a87bf","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a2cb5446a34df86","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_2.evaluate_mathematical_expression.test_evaluate","children":[{"name":"Testing calc function","uid":"d6d06cbc227917e","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"kyu_3","children":[{"name":"battleship_field_validator.test_battleship_validator","children":[{"name":"Testing validate_battlefield function","uid":"36b9e5073b489f49","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"battleship_field_validator.test_battleship_validator"},{"name":"calculator.test_calculator","children":[{"name":"Testing Calculator class","uid":"57bbb6ca73efd1b4","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"calculator.test_calculator"},{"name":"line_safari_is_that_a_line","children":[{"name":"test_walker","children":[{"name":"test_starting_position_from_negatives","uid":"92b17e5074e54ef7","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_starting_position_from_positives","uid":"3edaeb1c9114b312","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"skipped","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"},{"name":"test_line_negative","children":[{"name":"test_line_negative","uid":"620b2589fb870406","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"a3585ed62cd588cbb3b344cd7fa3332c"},{"name":"test_line_positive","children":[{"name":"test_line_positive","uid":"f4c5ff18f0370583","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"cc1e0f328290a29e910c139b58d55ab9"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"164087ecc666d9a0","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]}],"uid":"make_spiral.test_spiralize"},{"name":"rail_fence_cipher_encoding_and_decoding","children":[{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"3fa15071b1bee987","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"},{"name":"test_decoding","children":[{"name":"Testing Decoding functionality","uid":"7e0e76f32ac7ce4e","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"409595d25cc5d60c","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]}],"uid":"human_readable_duration_format.test_format_duration"},{"name":"most_frequently_used_words.test_top_3_words","children":[{"name":"Testing top_3_words function","uid":"647dfe698e2a6fdb","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"913459f449cde9ee","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"db7b4c897ddcf1a6","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"6fbcaa806475fb37","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"permutations.test_permutations"},{"name":"range_extraction.test_solution","children":[{"name":"Testing solution function","uid":"99f691b62c390084","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"16026a681cee6bae","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"afdaa298aab7eba8","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"5c64823a2a73f974","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"af3c309699fc2b8b","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]}],"uid":"sudoku_solution_validator.test_valid_solution"},{"name":"sum_by_factors.test_sum_for_list","children":[{"name":"Testing sum_for_list function","uid":"521b14729542d5c4","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"sum_by_factors.test_sum_for_list"},{"name":"sum_of_intervals.test_sum_of_intervals","children":[{"name":"Testing sum_of_intervals function","uid":"acc95e26a53d92ff","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]}],"uid":"sum_of_intervals.test_sum_of_intervals"},{"name":"the_greatest_warrior","children":[{"name":"test_battle","children":[{"name":"Testing Battle method","uid":"6ce4bba2ff4664c2","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"8649c3105decfce4138f9d41edf0cec5"},{"name":"test_warrior","children":[{"name":"Testing Warrior class >>> bruce_lee","uid":"bc3230f80ad8864d","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"c1f2317d20109e13","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"0d62047a621cabeef8af32bce4e63018"}],"uid":"833d211f8698ccfc8f9c16129c62c235"},{"name":"validate_sudoku_with_size.test_sudoku","children":[{"name":"Testing Sudoku class","uid":"a921030da8c9a520","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"validate_sudoku_with_size.test_sudoku"}],"uid":"9391700dc0e41de20d58b7581564be72"},{"name":"kyu_5","children":[{"name":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"aca9d99cb0e5842e","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"df3147d31fee6968","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]}],"uid":"did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"e5ac2209dd79eabb","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"diophantine_equation.test_solution","children":[{"name":"test_solution_big","uid":"6827fd264cb4d263","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"ad08cb0fb6eef203","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c322e80c6cd8da83","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"a064a48d91c28f13","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"diophantine_equation.test_solution"},{"name":"directions_reduction.test_directions_reduction","children":[{"name":"Testing dirReduc function","uid":"d65c16a1b47d468e","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"directions_reduction.test_directions_reduction"},{"name":"extract_the_domain_name_from_url.test_domain_name","children":[{"name":"Testing domain_name function","uid":"d8e9539521c4ca00","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"extract_the_domain_name_from_url.test_domain_name"},{"name":"find_the_safest_places_in_town.test_advice","children":[{"name":"Testing create_city_map function","uid":"e798d2f5cc38e024","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"34569132e9551c33","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"2ed8dfd7ca5a3d13","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"fibonacci_streaming.test_all_fibonacci_numbers","children":[{"name":"Testing all_fibonacci_numbers function","uid":"5ecd182a341dd7b4","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"257a5ad111bd69a7","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"find_the_smallest.test_smallest"},{"name":"first_non_repeating_character.test_first_non_repeating_letter","children":[{"name":"Testing first_non_repeating_letter function","uid":"689de206e9df0991","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"first_non_repeating_character.test_first_non_repeating_letter"},{"name":"flatten.test_flatten","children":[{"name":"Testing flatten function","uid":"84ae1ddd95d9c6d3","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"4e7abb728f95d63f","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"human_readable_time.test_make_readable"},{"name":"integers_recreation_one.test_list_squared","children":[{"name":"Testing list_squared function","uid":"60f5877935ced5c5","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]}],"uid":"integers_recreation_one.test_list_squared"},{"name":"master_your_primes_sieve_with_memoization.test_primes","children":[{"name":"Testing is_prime function","uid":"2f09ef1a750aec43","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]}],"uid":"master_your_primes_sieve_with_memoization.test_primes"},{"name":"josephus_survivor.test_josephus_survivor","children":[{"name":"test_josephus_survivor","uid":"62bf772c3a2aa5d2","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"josephus_survivor.test_josephus_survivor"},{"name":"moving_zeros_to_the_end.test_move_zeros","children":[{"name":"Testing move_zeros function","uid":"bdcb772653d8aad","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"moving_zeros_to_the_end.test_move_zeros"},{"name":"not_very_secure.test_alphanumeric","children":[{"name":"Testing alphanumeric function","uid":"41a3f66c1c393960","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"not_very_secure.test_alphanumeric"},{"name":"number_of_trailing_zeros_of_n.test_zeros","children":[{"name":"Testing zeros function","uid":"2c4e292a782b80e3","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"number_of_trailing_zeros_of_n.test_zeros"},{"name":"simple_pig_latin.test_pig_it","children":[{"name":"Testing pig_it function","uid":"e650d3e05f6d005c","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"simple_pig_latin.test_pig_it"},{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"cf2235e5886d8954","parentUid":"3e59bcb34719d71bd9719866840227a7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"sports_league_table_ranking.test_compute_ranks"},{"name":"string_incrementer.test_increment_string","children":[{"name":"Testing increment_string function","uid":"a42793a5da57f5c7","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"e943739be0c776f3","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"be5a8376fdcba717","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"d8f6e0603b79e82b","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]}],"uid":"valid_parentheses.test_valid_parentheses"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"63cbfe00daba1c69","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"where_my_anagrams_at.test_anagrams","children":[{"name":"Testing anagrams function","uid":"74afb414b6e0cabc","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"where_my_anagrams_at.test_anagrams"}],"uid":"e1292132c583178150c01c2c5b6fe8f9"},{"name":"kyu_6","children":[{"name":"array_diff.test_array_diff","children":[{"name":"Testing array_diff function","uid":"f52a489cb0add672","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"array_diff.test_array_diff"},{"name":"a_rule_of_divisibility_by_13.test_thirt","children":[{"name":"Testing 'thirt' function","uid":"66f1b8d1e5ed1dbe","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a_rule_of_divisibility_by_13.test_thirt"},{"name":"array_to_html_table.test_list_to_html_table","children":[{"name":"Testing to_table function","uid":"b78c37ec3b0f496f","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"array_to_html_table.test_list_to_html_table"},{"name":"binary_to_text_ascii_conversion.test_binary_to_string","children":[{"name":"Testing binary_to_string function","uid":"5c281d5272513bfd","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"character_frequency.test_character_frequency","children":[{"name":"All chars are in upper case","uid":"e1e70dabc7dad91e","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in mixed case","uid":"291bd12f30edb56f","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in lower case","uid":"79e39b6957e2fa23","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"character_frequency.test_character_frequency"},{"name":"casino_chips.test_solve","children":[{"name":"Testing solve function","uid":"d1585e7c78fd8d06","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"casino_chips.test_solve"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"3d3e842542b066f3","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"color_choice.test_checkchoose"},{"name":"count_letters_in_string.test_count_letters_in_string","children":[{"name":"Testing 'letter_count' function","uid":"7ba8a4247f4c6307","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"count_letters_in_string.test_count_letters_in_string"},{"name":"default_list.test_default_list","children":[{"name":"Testing 'DefaultList' class: append","uid":"7f890ca68cdfc481","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"14e29fc6b385d9d8","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"4359475f5ec554bd","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"43c0068fe0a1265e","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a33fb2570aec1823","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"93b3042e12ae0dc2","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"default_list.test_default_list"},{"name":"decipher_this.test_decipher_this","children":[{"name":"Testing decipher_this function","uid":"682a94239c4fcbde","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"decipher_this.test_decipher_this"},{"name":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"b3f7088fed8dedd7","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"a8ada246e9141e4e","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"7f2ec06c200d3086","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"6b49391a0624f51c","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"encrypt_this.test_encrypt_this"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with alphabet chars only","uid":"a0cc441d7d4eb4dd","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no alphabet chars","uid":"4260c429366ea20f","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with mixed type of chars","uid":"e885db3276511b9a","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no duplicate chars","uid":"62e4f6698c2439c","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String alphabet chars and spaces","uid":"b864bfcb14132f63","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"first_character_that_repeats.test_first_character_that_repeats"},{"name":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"ccf5a8c46639d0ec","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"format_string_of_names.test_namelist","children":[{"name":"String with no duplicate chars","uid":"863d982a547ab48a","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"bb5e32abc058341d","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"66511dda8143933e","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"324c41918ed3c26a","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"multiples_of_3_or_5.test_solution"},{"name":"no_arithmetic_progressions.test_sequence","children":[{"name":"test_sequence","uid":"900ed6bd99df3d56","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"no_arithmetic_progressions.test_sequence"},{"name":"number_zoo_patrol.test_find_missing_number","children":[{"name":"Testing the 'find_missing_number' function","uid":"f0e71551541527fc","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"number_zoo_patrol.test_find_missing_number"},{"name":"numericals_of_string.test_numericals","children":[{"name":"Testing 'numericals' function","uid":"89ceeba296a3ea3","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"numericals_of_string.test_numericals"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"30cacf1f2fb31f20","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (positive)","uid":"f921307aa8b56caa","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (negative)","uid":"f5b1db39220bbcf9","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"7d1621a20d6f8fe7","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"396df158495e2556","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"rotate_the_letters_of_each_element.test_group_cities","children":[{"name":"Testing the 'group_cities' function","uid":"578c3a6cd3e7e40f","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]}],"uid":"rotate_the_letters_of_each_element.test_group_cities"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"b98125cb150cd794","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"pyramid_array.test_pyramid_array"},{"name":"row_of_the_odd_triangle.test_odd_row","children":[{"name":"Testing odd_row function","uid":"4c3877c30e625752","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"1ef3e1da7f90eb82","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sort_the_odd.test_sort_array"},{"name":"string_subpattern_recognition_1.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ecfe278b9d03b10","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_1.test_has_subpattern"},{"name":"string_subpattern_recognition_2.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"c0ff31e127206139","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"string_subpattern_recognition_2.test_has_subpattern"},{"name":"string_subpattern_recognition_3.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"29266ed99d46b2a","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"ecd029e0f98c606","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"469371686ca36a1e","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"ab402f3759df06f","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"1c8034b1a6365fc2","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"vasya_clerk.test_tickets"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"57946e73be805e2a","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]}],"uid":"who_likes_it.test_likes_function"},{"name":"your_order_please.test_order","children":[{"name":"Testing 'order' function","uid":"91e3c1348f0cd9d2","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"your_order_please.test_order"}],"uid":"92572fcf598db614de4d09ce4acf8237"},{"name":"kyu_8","children":[{"name":"alternating_case.test_alternating_case","children":[{"name":"Testing to_alternating_case function","uid":"5653676293d9b683","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"1d2c6842ef40288f","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"8ded43d0fdf317ac","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"convert_string_to_an_array.test_string_to_array"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"b867e5092f796e5b","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"counting_sheep.test_counting_sheep","children":[{"name":"Testing 'count_sheeps' function: positive flow","uid":"9710b9a44c2e3c82","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2fba83a53ac553ac","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"c462a5b80d49c98b","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"a7151a5672bbc2f6","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"count_the_monkeys.test_monkey_count","children":[{"name":"Testing monkey_count function","uid":"8b31152bd581baeb","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"count_the_monkeys.test_monkey_count"},{"name":"find_the_first_non_consecutive_number.test_first_non_consecutive","children":[{"name":"Large lists","uid":"7cef5a6f9a11a927","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"53d75ff9d73daf75","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"fed28c7a9755def6","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"6881087bd4c8b374","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"cd298347a8b67e93","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"enumerable_magic_25.test_take"},{"name":"formatting_decimal_places_0.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"c0e2de6ef36ce602","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"formatting_decimal_places_0.test_two_decimal_places"},{"name":"grasshopper_check_for_factor.test_check_for_factor","children":[{"name":"Testing check_for_factor function: positive flow","uid":"5e8c0121e99e8c0","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b14acb4de8eb0e3a","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"grasshopper_check_for_factor.test_check_for_factor"},{"name":"grasshopper_messi_goals_function.test_messi_goals_function","children":[{"name":"goals function verification","uid":"a2776f2124bd86f4","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_summation.test_summation","children":[{"name":"Testing 'summation' function","uid":"c8a6a3e5884b319c","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"3d238edf9c2316ff","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]}],"uid":"grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"c301f45b01d7d10f","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"greek_sort.test_greek_comparator"},{"name":"holiday_vi_shark_pontoon.test_shark","children":[{"name":"Testing shark function (positive)","uid":"34febd97f08d8df7","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"2c2a3e42bb3933c8","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"f5a3f0d4d035c3a4","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"holiday_vi_shark_pontoon.test_shark"},{"name":"is_it_a_palindrome.test_is_palindrome","children":[{"name":"Testing is_palindrome function","uid":"69f91e5f44fcbcaa","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_it_a_palindrome.test_is_palindrome"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"3151ebffdc64c952","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"is_your_period_late.test_is_your_period_late","children":[{"name":"Testing period_is_late function (negative)","uid":"6a770856a19e186","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"8fac702aa93d2093","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (negative test case)","uid":"cbc7a26721b4acfd","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"7f23a2b3d247ad31","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"keep_up_the_hoop.test_hoop_count"},{"name":"logical_calculator.test_logical_calculator","children":[{"name":"AND logical operator","uid":"de314943cf5bdd10","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"3be027c950740ddd","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"cee46a1116cde2e1","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"logical_calculator.test_logical_calculator"},{"name":"make_upper_case.test_make_upper_case","children":[{"name":"Testing make_upper_case function","uid":"781079de643a720d","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"6af8370630444180","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"multiply.test_multiply"},{"name":"my_head_is_at_the_wrong_end.test_fix_the_meerkat","children":[{"name":"'fix_the_meerkat function function verification","uid":"1152e12f582a6d83","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"remove_first_and_last_character.test_remove_char","children":[{"name":"Testing remove_char function","uid":"f5da6537a014533","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]}],"uid":"remove_first_and_last_character.test_remove_char"},{"name":"remove_string_spaces.test_remove_string_spaces","children":[{"name":"Test that no_space function removes the spaces","uid":"62692a0c3dd76e6c","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"remove_string_spaces.test_remove_string_spaces"},{"name":"reversed_strings.test_reversed_strings","children":[{"name":"Test with empty string","uid":"f1acd3007b7873ed","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with regular string","uid":"2cbc31ebfbb61905","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"b843b5b7994550ed","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"de3c176bdacd6cb0","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"c08b2480b8f26290","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BOOLEANS","FUNDAMENTALS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"6bb1a909958ad3a2","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"ce5b44ba32daaf31","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"third_angle_of_triangle.test_third_angle_of_triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"564be6d750e08ee1","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"f3b283ff21d85aec","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"the_feast_of_many_beasts.test_feast"},{"name":"well_of_ideas_easy_version.test_well_of_ideas_easy_version","children":[{"name":"Should return 'Publish!'","uid":"5329936079819472","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"b32352034ba0a692","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"70e9bff1f7e13160","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"will_there_be_enough_space.test_enough","children":[{"name":"STesting enough function","uid":"ffc3f48cf5f0bf9f","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"will_there_be_enough_space.test_enough"},{"name":"will_you_make_it.test_zero_fuel","children":[{"name":"Testing zero_fuel function","uid":"627a7fd2fe38a284","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"will_you_make_it.test_zero_fuel"},{"name":"wolf_in_sheep_clothing.test_wolf_in_sheep_clothing","children":[{"name":"Wolf at the end of the queue","uid":"a3beec2fa9a311c4","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"85d9d1820cce2f7e","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"966dbbb37b9c251e","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"}],"uid":"ad159e13e774a608ee57dc656a6c81a6"},{"name":"utils.primes","children":[{"name":"test_primes_generator","children":[{"name":"Negative test cases for gen_primes function testing","uid":"5e4b0e05a0862f7e","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"928532982127bba0","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"20f0deee24a1e834e03a32549c14c866"},{"name":"test_is_prime","children":[{"name":"Positive test cases for is_prime function testing","uid":"2030ea00b6998f67","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for is_prime function testing","uid":"73d92f8f0c07772d","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"d30b78ff57a77d7e54cad3da4ceed49f"}],"uid":"utils.primes"}]} \ No newline at end of file +{"uid":"83edc06c07f9ae9e47eb6dd1b683e4e2","name":"packages","children":[{"name":"kyu_7","children":[{"name":"coloured_triangles.test_triangle","children":[{"name":"test_random","uid":"badb2c1a8c5e2d2d","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"68fbe283acac1b6a","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_triangle","uid":"96938210802b960f","parentUid":"92e3e2127b188c569d7b40bffec1d88f","status":"passed","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]}],"uid":"coloured_triangles.test_triangle"},{"name":"help_bob_count_letters_and_digits.test_count_letters_and_digits","children":[{"name":"Testing count_letters_and_digits function","uid":"5488ed1b45d5018a","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing count_letters_and_digits function","uid":"ead644ae8ee031c3","parentUid":"917fc4ee4d9a2b5315b04f86da5737b1","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"basic_math_add_or_subtract.test_calculate","children":[{"name":"Testing calculate function","uid":"b0395834a1dc7266","parentUid":"2bacf62fd1362dfcc355272e737cb693","status":"passed","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"basic_math_add_or_subtract.test_calculate"},{"name":"always_perfect.test_check_root","children":[{"name":"Testing check_root function","uid":"cbb9443875889585","parentUid":"b3eccf9a1f3d1791d776f76d331a3545","status":"passed","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]}],"uid":"always_perfect.test_check_root"},{"name":"beginner_series_sum_of_numbers.test_sum_of_numbers","children":[{"name":"a or b is negative","uid":"f74116cee1d73fd7","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"91c1d8a1fc37f84","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a and b are equal","uid":"8146fd50051ac96b","parentUid":"da78aa6433251aa2f681a4122b50b5a8","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"beginner_series_sum_of_numbers.test_sum_of_numbers"},{"name":"easy_line.test_easyline","children":[{"name":"Testing easy_line function","uid":"5238b22fc20ccda9","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc_combinations_per_row function","uid":"d9d827d0af3ba710","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"87b0b5de93d5cb12","parentUid":"84013a612c89b01404edaa0210d6d3e7","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"easy_line.test_easyline"},{"name":"disemvowel_trolls.test_disemvowel_trolls","children":[{"name":"a and b are equal","uid":"cef1ed2aef537de7","parentUid":"8ddc793fdbcfb611b495e7584cb4a011","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"disemvowel_trolls.test_disemvowel_trolls"},{"name":"factorial.test_factorial","children":[{"name":"Testing 'factorial' function","uid":"25c9ba69d5ac48c6","parentUid":"60b12fc70b6ac15d3eb46e897f258751","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"factorial.test_factorial"},{"name":"fill_the_hard_disk_drive.test_save","children":[{"name":"Testing 'save' function: positive","uid":"f0d7d5d837d1a81d","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: negative","uid":"69d8ca152b73c452","parentUid":"1dace3f106d04eaeecdd577bd654302b","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"fill_the_hard_disk_drive.test_save"},{"name":"find_the_longest_gap.test_gap","children":[{"name":"Testing gap function","uid":"8caf8fe76e46aa0f","parentUid":"ce3bfddf7e1042af4701012f391845a7","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"find_the_longest_gap.test_gap"},{"name":"formatting_decimal_places_1.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"8db7c8bf0abe07bc","parentUid":"256e534e8a3fe6e3a219059568f38b3f","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"formatting_decimal_places_1.test_two_decimal_places"},{"name":"fun_with_lists_length.test_length","children":[{"name":"Testing length function","uid":"e0dd8dfaed76aa75","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"e7ac97a954c5e722","parentUid":"0160a18b3790bbbe7edb8660d3313352","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]}],"uid":"fun_with_lists_length.test_length"},{"name":"growing_plant.test_growing_plant","children":[{"name":"Testing growing_plant function","uid":"4d64a30c387b7743","parentUid":"67206dd94089b995d5b4cfa34e92f8b4","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"growing_plant.test_growing_plant"},{"name":"jaden_casing_strings.test_jaden_casing_strings","children":[{"name":"Testing toJadenCase function (positive)","uid":"ec0c7de9a70a5f5e","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (negative)","uid":"e4473b95f40f5c92","parentUid":"0ad73ceb8239c28e56186292c699a1c8","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"jaden_casing_strings.test_jaden_casing_strings"},{"name":"isograms.test_is_isogram","children":[{"name":"Testing 'is_isogram' function","uid":"af16ce1f4d774662","parentUid":"6c8583e2f5e77cd371f9029f94482b66","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"isograms.test_is_isogram"},{"name":"make_class.test_make_class","children":[{"name":"Testing make_class function","uid":"a088624abb606e0e","parentUid":"e1b1c4ce332223f6297d1bc116ffdd48","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]}],"uid":"make_class.test_make_class"},{"name":"maximum_multiple.test_maximum_multiple","children":[{"name":"Testing max_multiple function","uid":"971c2aa5dd36f62c","parentUid":"884d9dc421f1c3fe74a8a6eec2a5b6fa","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]}],"uid":"maximum_multiple.test_maximum_multiple"},{"name":"powers_of_3.test_largest_power","children":[{"name":"Testing largestPower function","uid":"218b156daee27f08","parentUid":"24cbaf62563c9ef161f9d49f2b8603eb","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]}],"uid":"powers_of_3.test_largest_power"},{"name":"password_validator.test_password","children":[{"name":"Testing password function","uid":"49244d740987433","parentUid":"9f3a7ffb6c5ca092689c827574900120","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"password_validator.test_password"},{"name":"pull_your_words_together_man.test_sentencify","children":[{"name":"Testing 'solution' function","uid":"5af3592e93b232bc","parentUid":"1cf88253b24d161a056c714002a71593","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","ALGORITHMS"]}],"uid":"pull_your_words_together_man.test_sentencify"},{"name":"remove_the_minimum.test_remove_the_minimum","children":[{"name":"'multiply' function verification: lists with multiple digits","uid":"d2af0876e7f45a7f","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"ae87022eb9b205bd","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"6f178467aa4ed9b7","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"555817f2fd5ba68f","parentUid":"9e4f0348f8d92055524004983b54887d","status":"passed","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]}],"uid":"remove_the_minimum.test_remove_the_minimum"},{"name":"significant_figures.test_number_of_sigfigs","children":[{"name":"Testing number_of_sigfigs function","uid":"230fd42f20a11e18","parentUid":"14286171af1e323b0bb589eda6e3b46e","status":"passed","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","ALGORITHMS"]}],"uid":"significant_figures.test_number_of_sigfigs"},{"name":"share_prices.test_share_price","children":[{"name":"Testing share_price function","uid":"24f0384efd85ae74","parentUid":"9f30369cad131960ed9ed736322a87d3","status":"passed","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"share_prices.test_share_price"},{"name":"simple_fun_152.test_invite_more_women","children":[{"name":"Testing invite_more_women function (positive)","uid":"4a970025f2147b3a","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (negative)","uid":"32eaf956310a89b7","parentUid":"6e364cdf6ebef5e4d047546fbb03b1b7","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"simple_fun_152.test_invite_more_women"},{"name":"sort_out_the_men_from_boys.test_men_from_boys","children":[{"name":"Testing men_from_boys function","uid":"f4e7ccb7c6ccb848","parentUid":"f85d96be005c65f84b0652c349dd0e34","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"sort_out_the_men_from_boys.test_men_from_boys"},{"name":"substituting_variables_into_strings_padded_numbers.test_solution","children":[{"name":"Testing 'solution' function","uid":"95500b18da61d76","parentUid":"d83924216df65afe360723d81dab1d09","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]}],"uid":"substituting_variables_into_strings_padded_numbers.test_solution"},{"name":"sum_of_powers_of_2.test_sum_of_powers_of_2","children":[{"name":"powers function should return an array of unique numbers","uid":"823dff07664aaa4","parentUid":"3227fafddc7334ccbfb8f0b8be539aed","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"sum_of_powers_of_2.test_sum_of_powers_of_2"},{"name":"sum_of_odd_numbers.test_row_sum_odd_numbers","children":[{"name":"Testing row_sum_odd_numbers function","uid":"69f67038b11a4861","parentUid":"23e8c6e04cae543d43c04791a61bc1cc","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"sum_of_triangular_numbers.test_sum_triangular_numbers","children":[{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"f06328bb4646abe9","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"690df5b9e2e97d3","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"9b651a3e27842d38","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"ad642268f112be60","parentUid":"57c906f51a23dbb5e2a207b2732ea0d1","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_triangular_numbers.test_sum_triangular_numbers"},{"name":"the_first_non_repeated_character_in_string.test_first_non_repeated","children":[{"name":"Testing first_non_repeated function with various inputs","uid":"cd56af2e749c4e8a","parentUid":"82c5834134a5f43af372e0ab4fd3d9ea","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"the_first_non_repeated_character_in_string.test_first_non_repeated"},{"name":"sum_of_two_lowest_int.test_sum_two_smallest_numbers","children":[{"name":"Two smallest numbers in the start of the list","uid":"2fa689144ccb2725","parentUid":"9c04c6e3bb89a7cc961fc6c1936e3fdb","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sum_of_two_lowest_int.test_sum_two_smallest_numbers"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Simple test for empty string.","uid":"78aec59881bd461e","parentUid":"d65259ae496d50bc91c7ba0c97c946b8","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for invalid parentheses","uid":"f55783c4fa90131e","parentUid":"d65259ae496d50bc91c7ba0c97c946b8","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for invalid large string","uid":"d0cba34627dad034","parentUid":"d65259ae496d50bc91c7ba0c97c946b8","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for valid parentheses","uid":"4990a9f9fb7d9809","parentUid":"d65259ae496d50bc91c7ba0c97c946b8","status":"passed","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for valid large string","uid":"9cc2024d730e5f8a","parentUid":"d65259ae496d50bc91c7ba0c97c946b8","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]}],"uid":"valid_parentheses.test_valid_parentheses"},{"name":"you_are_square.test_you_are_square","children":[{"name":"Square numbers (positive)","uid":"5b36ed636679609b","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"33789c02e7e07041","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"eb8f6057b9598daa","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"c8680b20dd7e19d5","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a1e3818ccb62ed24","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"30779503c72bcec6","parentUid":"121c1f6d8e79dd2fd0f54201261c0ade","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]}],"uid":"you_are_square.test_you_are_square"},{"name":"vaporcode.test_vaporcode","children":[{"name":"Testing 'vaporcode' function","uid":"52f852c4238fea22","parentUid":"ea43fa277e3a0b545bed4be5a66feb7b","status":"passed","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"vaporcode.test_vaporcode"}],"uid":"b6ed3fddfe5724334ddd7fecb764efc9"},{"name":"kyu_5","children":[{"name":"sports_league_table_ranking.test_compute_ranks","children":[{"name":"Testing compute_ranks","uid":"ec1f79d5effe1aa9","parentUid":"3e59bcb34719d71bd9719866840227a7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing compute_ranks","uid":"213536a8a5597e91","parentUid":"3e59bcb34719d71bd9719866840227a7","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]}],"uid":"sports_league_table_ranking.test_compute_ranks"},{"name":"count_ip_addresses.test_ips_between","children":[{"name":"test_ips_between","uid":"43578fd4f74ce5d9","parentUid":"1f31d38d7cb9505f0b43c219039c2a1d","status":"skipped","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"count_ip_addresses.test_ips_between"},{"name":"alphabet_wars_nuclear_strike.test_alphabet_war","children":[{"name":"Testing alphabet_war function","uid":"2de9285990285353","parentUid":"935fdf12b33ba237cdfe7005a94ad6cf","status":"passed","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","EXPRESSIONS","REGULAR","DECLARATIVE","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]}],"uid":"alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"diophantine_equation.test_solution","children":[{"name":"test_solution_basic","uid":"6c1e65f294db5f89","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"4df2e31ca734bf47","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c62025a79b33eb3","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"ec58e61448a9c6a8","parentUid":"3e20e8ffcf02b79a887870fc7a6f487f","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"diophantine_equation.test_solution"},{"name":"did_i_finish_my_sudoku.test_did_i_finish_sudoku","children":[{"name":"Testing done_or_not function","uid":"a90239b6ef90f6a6","parentUid":"9fe2cba692e95a82188ff493843f1f71","status":"passed","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]}],"uid":"did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"directions_reduction.test_directions_reduction","children":[{"name":"Testing dir_reduc function","uid":"d49eccd60ce84feb","parentUid":"60112f904b6216fc106adb763a8c12ff","status":"passed","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"directions_reduction.test_directions_reduction"},{"name":"extract_the_domain_name_from_url.test_domain_name","children":[{"name":"Testing domain_name function","uid":"31ce0fdb81c2daf6","parentUid":"f1d91d3a28765e5aa204433b9ed868d1","status":"passed","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"extract_the_domain_name_from_url.test_domain_name"},{"name":"fibonacci_streaming.test_all_fibonacci_numbers","children":[{"name":"Testing all_fibonacci_numbers function","uid":"315e825b7f114d5b","parentUid":"b252704d11ff2ed6da4b0bffeab28c07","status":"passed","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"fibonacci_streaming.test_all_fibonacci_numbers"},{"name":"find_the_safest_places_in_town.test_advice","children":[{"name":"Testing agents_cleanup function","uid":"1fb0e4ddfae0bf06","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"506e0ee504d23a05","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"be79a08ed18e426","parentUid":"3d9d2896a5b22cda51213d40b5b62e81","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"find_the_safest_places_in_town.test_advice"},{"name":"first_non_repeating_character.test_first_non_repeating_letter","children":[{"name":"Testing first_non_repeating_letter function","uid":"4d53eb58d77047e8","parentUid":"f4081e0a9b2490bdb0c3ccf49f96377a","status":"passed","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]}],"uid":"first_non_repeating_character.test_first_non_repeating_letter"},{"name":"find_the_smallest.test_smallest","children":[{"name":"test_smallest","uid":"7ea8a8dc382128a4","parentUid":"00823b69dc4124ec7e8615df2b148b5f","status":"skipped","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"find_the_smallest.test_smallest"},{"name":"flatten.test_flatten","children":[{"name":"Testing flatten function","uid":"c8d9a4d573dbda2b","parentUid":"f1ee8ce4e33c1ddaa1c11186fe03dad0","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]}],"uid":"flatten.test_flatten"},{"name":"human_readable_time.test_make_readable","children":[{"name":"Testing make_readable function","uid":"a92222b0b7f4d601","parentUid":"db3e76e3c0c1f587bcdb845c3907193d","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]}],"uid":"human_readable_time.test_make_readable"},{"name":"integers_recreation_one.test_list_squared","children":[{"name":"Testing list_squared function","uid":"f39847014d01db85","parentUid":"856547862e710e34ddc8a98dec6bab4d","status":"passed","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]}],"uid":"integers_recreation_one.test_list_squared"},{"name":"josephus_survivor.test_josephus_survivor","children":[{"name":"test_josephus_survivor","uid":"e08a8a15da9b3ad","parentUid":"d2f6b9ea35c901fbbbd74aeecef181dc","status":"skipped","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"josephus_survivor.test_josephus_survivor"},{"name":"master_your_primes_sieve_with_memoization.test_primes","children":[{"name":"Testing is_prime function","uid":"8eb80b15a6d6b848","parentUid":"6ef52898e6b6eacd05d05476a5d48eda","status":"passed","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]}],"uid":"master_your_primes_sieve_with_memoization.test_primes"},{"name":"moving_zeros_to_the_end.test_move_zeros","children":[{"name":"Testing move_zeros function","uid":"ac824f903545a6e7","parentUid":"43dfa3c3ead2744317ca286aa276bc83","status":"passed","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]}],"uid":"moving_zeros_to_the_end.test_move_zeros"},{"name":"number_of_trailing_zeros_of_n.test_zeros","children":[{"name":"Testing zeros function","uid":"40b9b78f2d258cf9","parentUid":"ad9197b33279ea2405d5655906bf2c5b","status":"passed","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"number_of_trailing_zeros_of_n.test_zeros"},{"name":"not_very_secure.test_alphanumeric","children":[{"name":"Testing alphanumeric function","uid":"19443f8320b2694c","parentUid":"d5516e9ce6bd123f5c2aa1eaf451af0b","status":"passed","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"not_very_secure.test_alphanumeric"},{"name":"simple_pig_latin.test_pig_it","children":[{"name":"Testing pig_it function","uid":"22bb7ddce4971121","parentUid":"9b21747dc6a47cf8d5b0f7ace7d4d88f","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"simple_pig_latin.test_pig_it"},{"name":"string_incrementer.test_increment_string","children":[{"name":"Testing increment_string function","uid":"9ba260a0149e6341","parentUid":"4e90d826c54609479695a19b79427e84","status":"passed","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]}],"uid":"string_incrementer.test_increment_string"},{"name":"tic_tac_toe_checker.test_checker","children":[{"name":"Testing done_or_not function","uid":"5b5df6c66b23ba75","parentUid":"48cfa3e657200c7ba1f64d2124edc8db","status":"passed","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]}],"uid":"tic_tac_toe_checker.test_checker"},{"name":"the_hashtag_generator.test_generate_hashtag","children":[{"name":"Testing 'generate_hashtag' function","uid":"3f2e19b818fd15f5","parentUid":"689fa81048b276d4e628b051a24acc8a","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]}],"uid":"the_hashtag_generator.test_generate_hashtag"},{"name":"sum_of_pairs.test_sum_pairs","children":[{"name":"Testing done_or_not function","uid":"72c2edc2055d0da7","parentUid":"17116744badac2fb34a25a732d0e08f0","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]}],"uid":"sum_of_pairs.test_sum_pairs"},{"name":"valid_parentheses.test_valid_parentheses","children":[{"name":"Testing valid_parentheses function","uid":"ee5910cfe65a88ee","parentUid":"db7ec4b9a00b0281826eab81b2cb50f0","status":"passed","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]}],"uid":"valid_parentheses.test_valid_parentheses"},{"name":"where_my_anagrams_at.test_anagrams","children":[{"name":"Testing anagrams function","uid":"d2acdc5e027859f4","parentUid":"874b60bd86ceb2618c2fef53288a92fd","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"where_my_anagrams_at.test_anagrams"}],"uid":"e1292132c583178150c01c2c5b6fe8f9"},{"name":"kyu_2.evaluate_mathematical_expression.test_evaluate","children":[{"name":"Testing calc function","uid":"26189d3cfda1b8d1","parentUid":"e02a785c5b1303d6ed8d75a2d70b29b5","status":"passed","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"kyu_3","children":[{"name":"battleship_field_validator.test_battleship_validator","children":[{"name":"Testing validate_battlefield function","uid":"c515ef635fa26df1","parentUid":"9d422ce49cf8ce313a8450b3755a9fec","status":"passed","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]}],"uid":"battleship_field_validator.test_battleship_validator"},{"name":"line_safari_is_that_a_line","children":[{"name":"test_line_negative","children":[{"name":"test_line_negative","uid":"482cc1b462231f44","parentUid":"a3585ed62cd588cbb3b344cd7fa3332c","status":"skipped","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"a3585ed62cd588cbb3b344cd7fa3332c"},{"name":"test_line_positive","children":[{"name":"test_line_positive","uid":"fb676676627eae5f","parentUid":"cc1e0f328290a29e910c139b58d55ab9","status":"skipped","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"cc1e0f328290a29e910c139b58d55ab9"},{"name":"test_walker","children":[{"name":"Testing Walker class - position property from negative grids","uid":"a81b8ca7a7877717","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"eb94d03877c16bb4","parentUid":"7c3218c6fa96493f1d958779bf4d27d0","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"7c3218c6fa96493f1d958779bf4d27d0"}],"uid":"5c35e74b01bf433e4f22138a59c174a1"},{"name":"calculator.test_calculator","children":[{"name":"Testing Calculator class","uid":"d06d6d8db945d4d7","parentUid":"1de2b35f75278746d59bb4a5dc2f2ce8","status":"passed","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"calculator.test_calculator"},{"name":"make_spiral.test_spiralize","children":[{"name":"Testing spiralize function","uid":"7aa3fbfc8218c54e","parentUid":"a6f5ac4f4d6d60dbbec0f9f67b37e321","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]}],"uid":"make_spiral.test_spiralize"},{"name":"rail_fence_cipher_encoding_and_decoding","children":[{"name":"test_encoding","children":[{"name":"Testing Encoding functionality","uid":"644c808df55456e9","parentUid":"2b6053cbf33811964798f0a6a89bee57","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"2b6053cbf33811964798f0a6a89bee57"},{"name":"test_decoding","children":[{"name":"Testing Decoding functionality","uid":"ca1eccae180a083e","parentUid":"0e9b75758d37e1ce8f643d1346f6ea11","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]}],"uid":"0e9b75758d37e1ce8f643d1346f6ea11"}],"uid":"d5d90d1158de0e666e1d328a871a7aa9"}],"uid":"474158ca3b7783866b81414d3d757aca"},{"name":"kyu_4","children":[{"name":"human_readable_duration_format.test_format_duration","children":[{"name":"Testing format_duration","uid":"b92f0db6c4ee4ff0","parentUid":"4e2b256ce00382c8a11b97bc033ae006","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","DATES/TIME","FORMATS","ALGORITHMS"]}],"uid":"human_readable_duration_format.test_format_duration"},{"name":"most_frequently_used_words.test_top_3_words","children":[{"name":"Testing top_3_words function","uid":"f2a1a9d494a0859","parentUid":"ebde91e93ac5ba4bd1e142f0a05aee3b","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]}],"uid":"most_frequently_used_words.test_top_3_words"},{"name":"next_smaller_number_with_the_same_digits.test_next_smaller","children":[{"name":"Testing next_smaller function","uid":"c1f90fc4edd70bea","parentUid":"d0e43ede1b8e1b824b58b9f7a014c6ba","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"permutations.test_permutations","children":[{"name":"test_permutations","uid":"5a5d0954bb249b69","parentUid":"f1d94afe1d537408b84b01b5c9303e57","status":"skipped","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"permutations.test_permutations"},{"name":"next_bigger_number_with_the_same_digits.test_next_bigger","children":[{"name":"Testing next_bigger function","uid":"1d49801d4e6b4921","parentUid":"673f42b24efd1125894cb83167d0d7b4","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]}],"uid":"next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"range_extraction.test_solution","children":[{"name":"Testing solution function","uid":"913fbd5c2da31308","parentUid":"623c3702db4387b6e24c88f812e18cc9","status":"passed","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","STRING","ALGORITHMS"]}],"uid":"range_extraction.test_solution"},{"name":"snail.test_snail","children":[{"name":"Testing 'snail' function","uid":"43a52f18fb3b8136","parentUid":"dac34a1ff98d7957fea19accce13ddc0","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]}],"uid":"snail.test_snail"},{"name":"strings_mix.test_mix","children":[{"name":"Testing 'mix' function","uid":"f87e2580dd045df5","parentUid":"4f63ffda7cb8b7f1111aec1e9347a364","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"strings_mix.test_mix"},{"name":"sudoku_solution_validator.test_valid_solution","children":[{"name":"Testing validSolution","uid":"6c8559b634a76bd8","parentUid":"60d24f8d3ce19f103f2519b59491d859","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]}],"uid":"sudoku_solution_validator.test_valid_solution"},{"name":"strip_comments.test_solution","children":[{"name":"Testing 'solution' function","uid":"8da8c6de16bb179d","parentUid":"c96493c4e5d67d49f8cebdcc50da431c","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"strip_comments.test_solution"},{"name":"sum_by_factors.test_sum_for_list","children":[{"name":"Testing sum_for_list function","uid":"af3a43fc31649664","parentUid":"18d291f540e272e3b635de02999cf1b9","status":"passed","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]}],"uid":"sum_by_factors.test_sum_for_list"},{"name":"the_greatest_warrior","children":[{"name":"test_battle","children":[{"name":"Testing Battle method","uid":"c678c03e12583e98","parentUid":"8649c3105decfce4138f9d41edf0cec5","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"8649c3105decfce4138f9d41edf0cec5"},{"name":"test_warrior","children":[{"name":"Testing Warrior class >>> bruce_lee","uid":"8c4575be21ff0ded","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"d6520bfb9bc036e4","parentUid":"0d62047a621cabeef8af32bce4e63018","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"0d62047a621cabeef8af32bce4e63018"}],"uid":"833d211f8698ccfc8f9c16129c62c235"},{"name":"sum_of_intervals.test_sum_of_intervals","children":[{"name":"Testing sum_of_intervals function","uid":"99e95613ed424b35","parentUid":"9e2db0b0c3b3425607c81b13bb08013e","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]}],"uid":"sum_of_intervals.test_sum_of_intervals"},{"name":"validate_sudoku_with_size.test_sudoku","children":[{"name":"Testing Sudoku class","uid":"f51b45f6ebc18bdf","parentUid":"50b3ac269aab62378c30fc27e52086bb","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"validate_sudoku_with_size.test_sudoku"}],"uid":"9391700dc0e41de20d58b7581564be72"},{"name":"kyu_6","children":[{"name":"a_rule_of_divisibility_by_13.test_thirt","children":[{"name":"Testing 'thirt' function","uid":"a5961784f4ddfa34","parentUid":"8660e3fe8d4a01bc6541a5d66028a74b","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"a_rule_of_divisibility_by_13.test_thirt"},{"name":"array_diff.test_array_diff","children":[{"name":"Testing array_diff function","uid":"80b7e762ad299367","parentUid":"6fae57e8d849f16eb073418bfe1e77f0","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"array_diff.test_array_diff"},{"name":"array_to_html_table.test_list_to_html_table","children":[{"name":"Testing to_table function","uid":"ece5bd16ef8bbe52","parentUid":"44bc20035d1d261b178f3bf4ab54c80b","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]}],"uid":"array_to_html_table.test_list_to_html_table"},{"name":"binary_to_text_ascii_conversion.test_binary_to_string","children":[{"name":"Testing binary_to_string function","uid":"1cbe6a610fbdfd6","parentUid":"669f6e101459090d95f8416121a921b3","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"casino_chips.test_solve","children":[{"name":"Testing solve function","uid":"c1393951861e51a9","parentUid":"80841e7b6266b6e4034a59a1e49d4695","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"casino_chips.test_solve"},{"name":"character_frequency.test_character_frequency","children":[{"name":"All chars are in mixed case","uid":"293f48722d8450df","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"5bee7e36f6e76857","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"da807d1d651bf07b","parentUid":"dac8ac726ef58490dca47f901a53483d","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]}],"uid":"character_frequency.test_character_frequency"},{"name":"color_choice.test_checkchoose","children":[{"name":"Testing checkchoose function","uid":"c9c9a6a75f3a249f","parentUid":"97a318e13d444e637af22ecc195debed","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"color_choice.test_checkchoose"},{"name":"count_letters_in_string.test_count_letters_in_string","children":[{"name":"Testing 'letter_count' function","uid":"4e3fc5966ad47411","parentUid":"58862558cf4ef96293d264ca91f0025e","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]}],"uid":"count_letters_in_string.test_count_letters_in_string"},{"name":"decipher_this.test_decipher_this","children":[{"name":"Testing decipher_this function","uid":"afa4196b56245753","parentUid":"2ad9ee581bd454149aa526b6fb21b516","status":"passed","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"decipher_this.test_decipher_this"},{"name":"default_list.test_default_list","children":[{"name":"Testing 'DefaultList' class: extend","uid":"f56ae5fa4f278c43","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: append","uid":"44141b5da145c70a","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"9e6eb35888cc4f59","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"67535419d885cbd9","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a6a651d904577cf4","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"3ff093181cede851","parentUid":"fffbb3306faff31eb248a950bc2e67a0","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"default_list.test_default_list"},{"name":"disease_spread.test_epidemic","children":[{"name":"Testing epidemic function","uid":"8572ffe92ddcaa11","parentUid":"7824ab7470c521b442cdc9ee108dd6ea","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"disease_spread.test_epidemic"},{"name":"easy_diagonal.test_diagonal","children":[{"name":"Testing easy_diagonal function","uid":"48f19bb58dd1432f","parentUid":"d911558c4dda5d394e26697950d7e557","status":"passed","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"easy_diagonal.test_diagonal"},{"name":"duplicate_encoder.test_duplicate_encode","children":[{"name":"Testing duplicate_encode function","uid":"157d23c0aff9e075","parentUid":"d018503e774f7e1cc2d02c56db3aa279","status":"passed","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"duplicate_encoder.test_duplicate_encode"},{"name":"find_the_odd_int.test_find_the_odd_int","children":[{"name":"Find the int that appears an odd number of times","uid":"4cc7d24b84024142","parentUid":"6b970c4705c037ec93e31fcbcc4f19bf","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"find_the_odd_int.test_find_the_odd_int"},{"name":"encrypt_this.test_encrypt_this","children":[{"name":"Testing encrypt_this function","uid":"984b8a80ce69773d","parentUid":"64ec3fe13edd3f59f446d57eb6f63c25","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]}],"uid":"encrypt_this.test_encrypt_this"},{"name":"first_character_that_repeats.test_first_character_that_repeats","children":[{"name":"String with no duplicate chars","uid":"1d2cfb77eef4360e","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"777b1d9b55eb3ae9","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"f5898a8468d0cd4","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"f83b86d7cbc0ffa1","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"aa7d2e5e86b66673","parentUid":"40adbd81f10d20fbd1b27f3748a76f96","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"first_character_that_repeats.test_first_character_that_repeats"},{"name":"format_string_of_names.test_namelist","children":[{"name":"String with no duplicate chars","uid":"3d9d773987a3ac09","parentUid":"4df93960548482776a9f77cc42b08b27","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"format_string_of_names.test_namelist"},{"name":"longest_repetition.test_longest_repetition","children":[{"name":"Testing 'longest_repetition' function","uid":"1137568979e0ed3a","parentUid":"ae9a141e78244170618fb1b21b6fc677","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"longest_repetition.test_longest_repetition"},{"name":"help_the_bookseller.test_stock_list","children":[{"name":"Testing stock_list function","uid":"aa0fd3e8d8009a95","parentUid":"ecb7a481f88319a44d9ea7aae0f07ade","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"help_the_bookseller.test_stock_list"},{"name":"multiples_of_3_or_5.test_solution","children":[{"name":"Testing the 'solution' function","uid":"d0b6dccad411741e","parentUid":"917d6da5cf18e9bd830cc31afdaa00c9","status":"passed","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]}],"uid":"multiples_of_3_or_5.test_solution"},{"name":"no_arithmetic_progressions.test_sequence","children":[{"name":"test_sequence","uid":"21221b4a48a21055","parentUid":"d2cd4d29dbcc943124f377517800495e","status":"skipped","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]}],"uid":"no_arithmetic_progressions.test_sequence"},{"name":"numericals_of_string.test_numericals","children":[{"name":"Testing 'numericals' function","uid":"db9b592f660c3c08","parentUid":"7810d18d508d49215d1546824299ced6","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]}],"uid":"numericals_of_string.test_numericals"},{"name":"number_zoo_patrol.test_find_missing_number","children":[{"name":"Testing the 'find_missing_number' function","uid":"8878dccf56d36ba6","parentUid":"d2c29b9579ffc3791f3764faeb47aa8b","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]}],"uid":"number_zoo_patrol.test_find_missing_number"},{"name":"permute_a_palindrome.test_permute_a_palindrome","children":[{"name":"Testing permute_a_palindrome (empty string)","uid":"f74a1a4c19be5344","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"469fb46dbe1a31d","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"864ee426bf422b09","parentUid":"f474983013da71b8c3fa37fea5ff520d","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"permute_a_palindrome.test_permute_a_palindrome"},{"name":"potion_class_101.test_potion","children":[{"name":"Testing Potion class","uid":"25eb791ee007f15b","parentUid":"1bd2dd4b59c22e7f944dc75dd9b09377","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"potion_class_101.test_potion"},{"name":"pokemon_damage_calculator.test_calculate_damage","children":[{"name":"Testing calculate_damage function","uid":"4223e436b2847599","parentUid":"61b4d19f08c67c35820eff0c83ab2ab6","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"pokemon_damage_calculator.test_calculate_damage"},{"name":"pyramid_array.test_pyramid_array","children":[{"name":"Testing the 'pyramid' function","uid":"83ae1189d3669b33","parentUid":"23cc44286432b969152ba9e70e6f3d53","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"pyramid_array.test_pyramid_array"},{"name":"rotate_the_letters_of_each_element.test_group_cities","children":[{"name":"Testing the 'group_cities' function","uid":"1c66d03c44b01cf6","parentUid":"32a16442e14f596b70a204782372b208","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]}],"uid":"rotate_the_letters_of_each_element.test_group_cities"},{"name":"row_of_the_odd_triangle.test_odd_row","children":[{"name":"Testing odd_row function","uid":"733b2334645f5c42","parentUid":"4d2598c8f98a7dedcef002a1e309a745","status":"passed","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"row_of_the_odd_triangle.test_odd_row"},{"name":"sort_the_odd.test_sort_array","children":[{"name":"Testing the 'sort_array' function","uid":"4e3f7ea473e691d3","parentUid":"166933c3647e6ef767d435c1ad910bc8","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"sort_the_odd.test_sort_array"},{"name":"scheduling.test_solution","children":[{"name":"Testing 'shortest_job_first(' function","uid":"87b2e8453406c3f","parentUid":"7da07fec565898f0b48598a1fee6b886","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]}],"uid":"scheduling.test_solution"},{"name":"string_subpattern_recognition_1.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 1) function","uid":"c1326d9a3ad9ddfb","parentUid":"a322aef5b1a762ec642767b71992a907","status":"passed","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_1.test_has_subpattern"},{"name":"string_subpattern_recognition_2.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 2) function","uid":"52e55a2445119fdd","parentUid":"0f53e6a2686fccbc9a3226659fbf7d14","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_2.test_has_subpattern"},{"name":"string_subpattern_recognition_3.test_has_subpattern","children":[{"name":"Testing 'has_subpattern' (part 3) function","uid":"b4c3bd7788c9f57d","parentUid":"cc0e824910cbe0dcd7d21af584f0cd70","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"string_subpattern_recognition_3.test_has_subpattern"},{"name":"sum_of_digits_digital_root.test_digital_root","children":[{"name":"Testing digital_root function","uid":"2571a6d17171a809","parentUid":"71d64680a0c3255a02c43ed88f24a294","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"sum_of_digits_digital_root.test_digital_root"},{"name":"string_transformer.test_string_transformer","children":[{"name":"Testing string_transformer function","uid":"101b76d3a18bb4c3","parentUid":"1146b2ae00417705ff368b78615a8aef","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"string_transformer.test_string_transformer"},{"name":"unique_in_order.test_unique_in_order","children":[{"name":"Testing the 'unique_in_order' function","uid":"b3654581f89b5576","parentUid":"2bd9b9f6a84fb6b39ae4b22b5aa850d6","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"unique_in_order.test_unique_in_order"},{"name":"sums_of_parts.test_solution","children":[{"name":"Testing 'parts_sums' function","uid":"902288cde0f2109a","parentUid":"62a001897925dea7414ec58a1095f23c","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]}],"uid":"sums_of_parts.test_solution"},{"name":"vasya_clerk.test_tickets","children":[{"name":"Testing tickets function","uid":"d20d06b45fb65ddb","parentUid":"1b6f014ae09eea0886757a2e5b47b29e","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"vasya_clerk.test_tickets"},{"name":"valid_braces.test_valid_braces","children":[{"name":"Testing the 'valid_braces' function","uid":"e6b67890527d37e6","parentUid":"11736fc2b9c82a80098d60bb185fad78","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]}],"uid":"valid_braces.test_valid_braces"},{"name":"your_order_please.test_order","children":[{"name":"Testing 'order' function","uid":"7fd83f8828bfb391","parentUid":"4f783493b09e104e8ca930797ed27767","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"your_order_please.test_order"},{"name":"who_likes_it.test_likes_function","children":[{"name":"Testing likes function","uid":"5ff9cf70b259ca21","parentUid":"6bf4795a36e700f822d73475182559e0","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"who_likes_it.test_likes_function"}],"uid":"92572fcf598db614de4d09ce4acf8237"},{"name":"kyu_8","children":[{"name":"alternating_case.test_alternating_case","children":[{"name":"Testing to_alternating_case function","uid":"cb005e45e7b312b5","parentUid":"ba2df780c93a0545224ce263d195cde9","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"alternating_case.test_alternating_case"},{"name":"check_the_exam.test_check_exam","children":[{"name":"Testing check_exam function","uid":"23b533c70baf95c9","parentUid":"6de0274df0b8c3eb993888749da21587","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]}],"uid":"check_the_exam.test_check_exam"},{"name":"century_from_year.test_century","children":[{"name":"Testing century function","uid":"2a82791553e70088","parentUid":"20e7a352368964933e52c4fc278721b9","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"century_from_year.test_century"},{"name":"convert_string_to_an_array.test_string_to_array","children":[{"name":"Testing string_to_array function","uid":"7940a8ba615e27f7","parentUid":"e6ca2c5c8292cd48710772ce57a927b8","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"convert_string_to_an_array.test_string_to_array"},{"name":"count_the_monkeys.test_monkey_count","children":[{"name":"Testing monkey_count function","uid":"5880c730022f01ee","parentUid":"e024cd4551f18547db5acab289db408d","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"count_the_monkeys.test_monkey_count"},{"name":"counting_sheep.test_counting_sheep","children":[{"name":"Testing 'count_sheeps' function: bad input","uid":"b5ba84846c075db5","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"4d07449717f6193c","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"14c26803c1139e78","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"a95c24b51d5c9432","parentUid":"54fa688828b0c9d88117d1f5671a2321","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"counting_sheep.test_counting_sheep"},{"name":"enumerable_magic_25.test_take","children":[{"name":"Testing take function","uid":"47e3461a4e252fc1","parentUid":"4c7c1606acaff3c299f78963bce7eadf","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"enumerable_magic_25.test_take"},{"name":"find_the_first_non_consecutive_number.test_first_non_consecutive","children":[{"name":"Large lists","uid":"f807c10786110eac","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"8a0604fc927a7480","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"f4915582d5908ed3","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"a492c358ecb2902d","parentUid":"54a7ab60be646d867d73863e0ead4708","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"find_the_first_non_consecutive_number.test_first_non_consecutive"},{"name":"formatting_decimal_places_0.test_two_decimal_places","children":[{"name":"Testing two_decimal_places function","uid":"5647d5db4078d707","parentUid":"b0ff8b234b28011ecb8a6d23a20cb44c","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"formatting_decimal_places_0.test_two_decimal_places"},{"name":"grasshopper_messi_goals_function.test_messi_goals_function","children":[{"name":"goals function verification","uid":"5496efe2fd3e353","parentUid":"9d95ed63e92ddd92e662eb08f6087230","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"grasshopper_messi_goals_function.test_messi_goals_function"},{"name":"grasshopper_check_for_factor.test_check_for_factor","children":[{"name":"Testing check_for_factor function: positive flow","uid":"b40f27be3da7edd7","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"873ec1972fa36468","parentUid":"b42547a19b4f593392e754f86439d606","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"grasshopper_check_for_factor.test_check_for_factor"},{"name":"grasshopper_personalized_message.test_grasshopper_personalized_message","children":[{"name":"Verify that greet function returns the proper message","uid":"6b2ccbd851ec600","parentUid":"779c35284b049e73e129e2c570bafd70","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]}],"uid":"grasshopper_personalized_message.test_grasshopper_personalized_message"},{"name":"grasshopper_summation.test_summation","children":[{"name":"Testing 'summation' function","uid":"c8c57e21dd6fea81","parentUid":"c03e9d26eaa0b1ae3857fd92382726ec","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]}],"uid":"grasshopper_summation.test_summation"},{"name":"holiday_vi_shark_pontoon.test_shark","children":[{"name":"Testing shark function (positive)","uid":"ffb8e8f4eed50d14","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"a5a7f52be4bf7369","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"a4cb6a94c77f28ce","parentUid":"f7cca14e59d784495abe70898f7d9a69","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"holiday_vi_shark_pontoon.test_shark"},{"name":"greek_sort.test_greek_comparator","children":[{"name":"Testing 'greek_comparator' function","uid":"3a516b9dc7b53625","parentUid":"a07390b958cdaec02109c31709a7c2ee","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"greek_sort.test_greek_comparator"},{"name":"is_it_a_palindrome.test_is_palindrome","children":[{"name":"Testing is_palindrome function","uid":"564bcc936cf15d1a","parentUid":"c062bf113faf687ad521b0e68be66ca8","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_it_a_palindrome.test_is_palindrome"},{"name":"is_your_period_late.test_is_your_period_late","children":[{"name":"Testing period_is_late function (positive)","uid":"5503b0de9149b0f0","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"a1c87b2c2a6c0bb7","parentUid":"e5afc19c60e61ad7aabd2d66a9b589c3","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"is_your_period_late.test_is_your_period_late"},{"name":"keep_up_the_hoop.test_hoop_count","children":[{"name":"Testing hoop_count function (positive test case)","uid":"37fbb0401b01604d","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"ce6714fc18aff8ec","parentUid":"bbb7f5e80f5e8046eba7f73ade5be0f0","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"keep_up_the_hoop.test_hoop_count"},{"name":"keep_hydrated.test_keep_hydrated","children":[{"name":"Testing litres function with various test inputs","uid":"5ac65e8dc17d86a","parentUid":"3e7b41a6164067c269768efc21e4ddfe","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"keep_hydrated.test_keep_hydrated"},{"name":"logical_calculator.test_logical_calculator","children":[{"name":"AND logical operator","uid":"7250652c2d8bbae5","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"46352cf5111d5c61","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"2a6bb93adc2b9500","parentUid":"36fc3a2ca889f671f46a07385eebd951","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]}],"uid":"logical_calculator.test_logical_calculator"},{"name":"make_upper_case.test_make_upper_case","children":[{"name":"Testing make_upper_case function","uid":"e42b69525abdede6","parentUid":"6879d524b148bf04f6afe29d29923b7f","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"make_upper_case.test_make_upper_case"},{"name":"multiply.test_multiply","children":[{"name":"'multiply' function verification","uid":"456a7345e9aeb905","parentUid":"dbc997ef910ea3e53e1669971cc14c30","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]}],"uid":"multiply.test_multiply"},{"name":"my_head_is_at_the_wrong_end.test_fix_the_meerkat","children":[{"name":"fix_the_meerkat function function verification","uid":"afc8e5dacd30bc41","parentUid":"337191d2f34bf1473353ee28e0031202","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]}],"uid":"my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"remove_string_spaces.test_remove_string_spaces","children":[{"name":"Test that no_space function removes the spaces","uid":"b4cae88de9afaa55","parentUid":"a76a330835236f78f102c251fe1e0be1","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]}],"uid":"remove_string_spaces.test_remove_string_spaces"},{"name":"remove_first_and_last_character.test_remove_char","children":[{"name":"Testing remove_char function","uid":"6d917e3e4d702f23","parentUid":"cb64f787b99be77b944283fccd76bf52","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]}],"uid":"remove_first_and_last_character.test_remove_char"},{"name":"reversed_strings.test_reversed_strings","children":[{"name":"Test with regular string","uid":"fef6b9be2b6df65c","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"2a3aa78afffa487b","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"e96aee50481acdd6","parentUid":"acec845705c84504876f86606c969bc7","status":"passed","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"reversed_strings.test_reversed_strings"},{"name":"surface_area_and_volume_of_box.test_get_size","children":[{"name":"get_size function tests","uid":"1cc5ce778c99d98","parentUid":"eded47ebdff2fba13b0d8cec4266e0cf","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]}],"uid":"surface_area_and_volume_of_box.test_get_size"},{"name":"set_alarm.test_set_alarm","children":[{"name":"Testing set_alarm function","uid":"c50649c997228fe6","parentUid":"b8f9dd914d8e04ee00c0a65d9c0b46eb","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]}],"uid":"set_alarm.test_set_alarm"},{"name":"terminal_game_move_function.test_terminal_game_move_function","children":[{"name":"move function tests","uid":"5814d63d4b392228","parentUid":"e0374fc778e033f2b137a20306357d67","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"terminal_game_move_function.test_terminal_game_move_function"},{"name":"swap_values.test_swap_values","children":[{"name":"Testing swap_values function","uid":"7e7534020c406c41","parentUid":"96c4df9ed710460688806864bbea717c","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]}],"uid":"swap_values.test_swap_values"},{"name":"the_feast_of_many_beasts.test_feast","children":[{"name":"Testing 'feast' function","uid":"5364303890f7a5a1","parentUid":"0dfbe39ec6b81caa126f4da400454981","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"the_feast_of_many_beasts.test_feast"},{"name":"third_angle_of_triangle.test_third_angle_of_triangle","children":[{"name":"You are given two angles -> find the 3rd.","uid":"28baf5593cc14310","parentUid":"33fcd193c19a2727ab36fa2ed81c10a6","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"third_angle_of_triangle.test_third_angle_of_triangle"},{"name":"well_of_ideas_easy_version.test_well_of_ideas_easy_version","children":[{"name":"Should return 'I smell a series!'","uid":"d518579b8137712e","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"2c379ae83853bb2a","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"9eaae816682ea6e3","parentUid":"ba68374f1d2b273b28c7010a7bb16bb7","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"well_of_ideas_easy_version.test_well_of_ideas_easy_version"},{"name":"will_there_be_enough_space.test_enough","children":[{"name":"STesting enough function","uid":"b59318a9c97ef9f1","parentUid":"446b1e8eee9e8594655b21f22b1214f6","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"will_there_be_enough_space.test_enough"},{"name":"will_you_make_it.test_zero_fuel","children":[{"name":"Testing zero_fuel function","uid":"3f3a4afa0166112e","parentUid":"55bf4e3ecf8ce30ad6de2cae3ad3e812","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"will_you_make_it.test_zero_fuel"},{"name":"wolf_in_sheep_clothing.test_wolf_in_sheep_clothing","children":[{"name":"Wolf at the end of the queue","uid":"f8789af2e0cead9e","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"9e884f6ea55b7c35","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"e578dac1473f78ec","parentUid":"ae336af282882fa32dd236b58461354d","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"wolf_in_sheep_clothing.test_wolf_in_sheep_clothing"}],"uid":"ad159e13e774a608ee57dc656a6c81a6"},{"name":"utils.primes","children":[{"name":"test_is_prime","children":[{"name":"Negative test cases for is_prime function testing","uid":"ad3e6b6eddb975ef","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"5c460b7e756cd57","parentUid":"d30b78ff57a77d7e54cad3da4ceed49f","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"d30b78ff57a77d7e54cad3da4ceed49f"},{"name":"test_primes_generator","children":[{"name":"Negative test cases for gen_primes function testing","uid":"bb8e119491d2ebc3","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"c245bb8192a35073","parentUid":"20f0deee24a1e834e03a32549c14c866","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"20f0deee24a1e834e03a32549c14c866"}],"uid":"utils.primes"}]} \ No newline at end of file diff --git a/allure-report/data/suites.csv b/allure-report/data/suites.csv index 3f62094c018..25ac3219d59 100644 --- a/allure-report/data/suites.csv +++ b/allure-report/data/suites.csv @@ -1,87 +1,157 @@ "DESCRIPTION","DURATION IN MS","NAME","PARENT SUITE","START TIME","STATUS","STOP TIME","SUB SUITE","SUITE","TEST CLASS","TEST METHOD" -"","0","Testing permute_a_palindrome (empty string)","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" " - Returns [] if list has only one element + Testing list_squared function + :return: - ","0","'multiply' function verification with one element list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","140","Testing list_squared function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing alphabet_war function + Returns a list that misses only one element + :return: + ","0","'multiply' function verification with random list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing 'feast' function with various test inputs - Introduction - There is a war and nobody knows - the alphabet war! - The letters hide in their nuclear shelters. The - nuclear strikes hit the battlefield and killed a - lot of them. + Testing a function feast that takes the animal's + name and dish as arguments and returns true or + false to indicate whether the beast is allowed + to bring the dish to the feast. - Task - Write a function that accepts battlefield string - and returns letters that survived the nuclear strike. + Assume that beast and dish are always lowercase strings, + and that each has at least two letters. beast and dish + may contain hyphens and spaces, but these will not appear + at the beginning or end of the string. They will not + contain numerals. - 1. The battlefield string consists of only small letters, #,[ and ]. + There is just one rule: the dish must start and end with + the same letters as the animal's name. For example, the + great blue heron is bringing garlic naan and the chickadee + is bringing chocolate cake. + :return: + ","0","Testing 'feast' function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" +" + Test the function called that takes a string of parentheses, + and determines if the order of the parentheses is valid. + The function should return true if the string is valid, + and false if it's invalid. - 2. The nuclear shelter is represented by square brackets []. - The letters inside the square brackets represent letters - inside the shelter. + Examples - 3. The # means a place where nuclear strike hit the battlefield. - If there is at least one # on the battlefield, all letters outside - of shelter die. When there is no any # on the battlefield, all letters - survive (but do not expect such scenario too often ;-P ). + ""()"" => true + "")(()))"" => false + ""("" => false + ""(())((()())())"" => true + :return: + ","0","Testing valid_parentheses function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + Testing hoop_count function (positive) + + Alex just got a new hula hoop, he loves it but feels + discouraged because his little brother is better than him + + Write a program where Alex can input (n) how many times + the hoop goes round and it will return him an encouraging message + + - 10 or more hoops, return ""Great, now move on to tricks"". + + - Not 10 hoops, return ""Keep at it until you get it"". - 4. The shelters have some durability. When 2 or more # hit close to - the shelter, the shelter is destroyed and all letters inside evaporate. - The 'close to the shelter' means on the ground between the shelter and - the next shelter (or beginning/end of battlefield). The below samples - make it clear for you. :return: - ","15","Testing alphabet_war function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing hoop_count function (positive test case)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Test a function which formats a duration, - given as a number of seconds, in a human-friendly way. + Testing is_solved function - The function must accept a non-negative integer. - If it is zero, it just returns ""now"". Otherwise, - the duration is expressed as a combination of years, - days, hours, minutes and seconds. + The function should return whether the + board's current state is solved. + + We want our function to return: + + -1 if the board is not yet finished (there are empty spots), + 1 if ""X"" won, + 2 if ""O"" won, + 0 if it's a cat's game (i.e. a draw). + ","16","Testing done_or_not function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + 25 is a square number :return: - ","0","Testing format_duration","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","16","Square numbers (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Testing 'DefaultList' class: remove + Exclusive or or exclusive disjunction is a + logical operation that outputs true only when + inputs differ (one is true, the other is false). + + XOR outputs true whenever the inputs differ: + + Source: + https://en.wikipedia.org/wiki/Exclusive_or :return: - ","15","Testing 'DefaultList' class: remove","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" + ","0","XOR logical operator","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing Battle method - ","0","Testing Battle method","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","OOP","","" + If the wolf is not the closest animal to you, + return ""Oi! Sheep number N! You are about to be eaten by a wolf!"" + where N is the sheep's position in the queue. + :return: + ","0","Wolf at the end of the queue","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Control Flow","","" " - The function powers takes a single parameter, - the number n, and should return an array of unique numbers. + Testing the 'unique_in_order' function + with various test data :return: - ","0","powers function should return an array of unique numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'unique_in_order' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing is_palindrome function - with various test inputs - - The function should check if a - given string (case insensitive) - is a palindrome. - ","0","Testing is_palindrome function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + Testing easy line function exception + :return: + ","0","Testing easy_line function exception message","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing duplicate_encode function - with various test inputs + Verify that the function returns Messi's + total number of goals in all three leagues. :return: - ","0","Testing duplicate_encode function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","goals function verification","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - And (â§) is the truth-functional - operator of logical conjunction + Testing easy_line function + :return: + ","0","Testing easy_line function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" +" + Testing check_exam function - The and of a set of operands is true - if and only if all of its operands are true. + The function should return the score + for this array of answers, giving +4 + for each correct answer, -1 for each + incorrect answer, and +0 for each blank + answer(empty string). - Source: - https://en.wikipedia.org/wiki/Logical_conjunction + :return: + ","0","Testing check_exam function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Test an algorithm that takes an array and moves all of the + zeros to the end, preserving the order of the other elements. + :return: + ","0","Testing move_zeros function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + Testing using empty test data + :return: + ","0","test_solution_empty","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing Encoding functionality + ","0","Testing Encoding functionality","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing Battle method + ","0","Testing Battle method","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","OOP","","" +" + Testing string_to_array function. + A function to split a string and + convert it into an array of words. :return: - ","0","AND logical operator","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing string_to_array function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing litres function with various test inputs + :return: + ","0","Testing litres function with various test inputs","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" +" + In this kata you have to correctly return who + is the ""survivor"", ie: the last element of a + Josephus permutation. + :return: + ","0","test_josephus_survivor","Novice","Sat Nov 30 21:14:59 PST 2024","skipped","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " Testing solution function @@ -95,30 +165,96 @@ Note: If the number is a multiple of both 3 and 5, only count it once. :return: - ","0","Testing the 'solution' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'solution' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Test a function that will find all the anagrams of a word from a list. - You will be given two inputs a word and an array with words. You should - return an array of all the anagrams or an empty array if there are none. + Test a function which formats a duration, + given as a number of seconds, in a human-friendly way. - For example: + The function must accept a non-negative integer. + If it is zero, it just returns ""now"". Otherwise, + the duration is expressed as a combination of years, + days, hours, minutes and seconds. + :return: + ","0","Testing format_duration","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing array_diff function + :return: + ","0","Testing array_diff function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" +" + Testing permute_a_palindrome function with empty string + :return: + ","0","Testing permute_a_palindrome (empty string)","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +" + In mathematics the number of x combinations you can take from a + set of n elements is called the binomial coefficient of n and x, + or more often n choose x. The formula to compute m = n choose x is: + m = n! / (x! * (n - x)!) where ! is the factorial operator. - anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa'] - anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer'] - anagrams('laser', ['lazing', 'lazy', 'lacer']) => [] + You are a renowned poster designer and painter. You are asked to + provide 6 posters all having the same design each in 2 colors. + Posters must all have a different color combination and you have + the choice of 4 colors: red, blue, yellow, green. How many colors + can you choose for each poster? + ","0","Testing checkchoose function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" +" + Testing 'DefaultList' class: extend :return: - ","0","Testing anagrams function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'DefaultList' class: extend","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Large lists + Testing 'sentencify' function. + The function should: + 1. Capitalise the first letter of the first word. + 2. Add a period (.) to the end of the sentence. + 3. Join the words into a complete string, with spaces. + 4. Do no other manipulation on the words. + :return: - ","0","Large lists","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'solution' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Simple negative test + Testing spiralize function + ","0","Testing spiralize function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + For a given string s find the character c (or C) with + longest consecutive repetition and return: (c, l) + where l (or L) is the length of the repetition. + + For empty string return: ('', 0) :return: - ","0","Testing toJadenCase function (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'longest_repetition' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing Warrior class >>> tom - ","0","Testing Warrior class >>> tom","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","OOP","","" + Test the compute_ranks function that organizes a sports + league in a round-robin-system. Each team meets all other teams. + In your league a win gives a team 2 points, a draw gives + both teams 1 point. After some games you have to compute + the order of the teams in your league. You use the following + criteria to arrange the teams: + 1. Points. + 2. Scoring differential (the difference between goals + scored and those conceded). + 3. Goals scored. + :return: + ","0","Testing compute_ranks","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + Simple positive test + :return: + ","0","Testing toJadenCase function (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + And (â§) is the truth-functional + operator of logical conjunction + + The and of a set of operands is true + if and only if all of its operands are true. + + Source: + https://en.wikipedia.org/wiki/Logical_conjunction + + :return: + ","0","AND logical operator","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing calc class + Given a mathematical expression as a string you + must return the result as a number. + ","0","Testing calc function","Proficient","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " Testing next_smaller function @@ -130,7 +266,106 @@ 2071 ==> 2017 If no smaller number can be composed using those digits, return -1 - ","15","Testing next_smaller function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing next_smaller function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing a function named first_non_repeating_letter + that takes a string input, and returns the first character + that is not repeated anywhere in the string. + + For example, if given the input 'stress', the function + should return 't', since the letter t only occurs once + in the string, and occurs first in the string. + + As an added challenge, upper- and lowercase letters are + considered the same character, but the function should + return the correct case for the initial letter. For example, + the input 'sTreSS' should return 'T'. + + If a string contains all repeating characters, it should + return an empty string ("""") or None -- see sample tests. + :return: + ","0","Testing first_non_repeating_letter function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing men_from_boys function with + various test inputs + + Scenario + Now that the competition gets tough it + will Sort out the men from the boys . + + Men are the Even numbers and Boys are + the odd !alt !alt + + Task + Given an array/list [] of n integers , + Separate The even numbers from the odds , + or Separate the men from the boys !alt !alt + + Notes + Return an array/list where Even numbers + come first then odds. + Since , Men are stronger than Boys , + Then Even numbers in ascending order + While odds in descending. + :return: + ","0","Testing men_from_boys function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing using basic test data + :return: + ","0","test_solution_basic","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing Warrior class >>> tom + ","0","Testing Warrior class >>> tom","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","OOP","","" +" + Your task is to verify that 'order' function + sorts a given string by following rules: + + 1. Each word in the string will contain a single number. + This number is the position the word should have in + the result. + + 2. Note: Numbers can be from 1 to 9. So 1 will be the + first word (not 0). + + 3. If the input string is empty, return an empty string. + The words in the input String will only contain valid + consecutive numbers. + + :return: + ","0","Testing 'order' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" +" + Testing the function with various test data + :return: + ","0","Testing count_letters_and_digits function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" +" + Testing 'snail' function + + Given an n x n array, 'snail' function should return the array + elements arranged from outermost elements to the middle element, + traveling clockwise. + ","0","Testing 'snail' function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing tickets function with various test inputs. + + The new ""Avengers"" movie has just been released! + There are a lot of people at the cinema box office + standing in a huge line. Each of them has a single + 100, 50 or 25 dollar bill. An ""Avengers"" ticket + costs 25 dollars. + + Vasya is currently working as a clerk. + He wants to sell a ticket to every single person + in this line. + + Can Vasya sell a ticket to every person and give change + if he initially has no money and sells the tickets strictly + in the order people queue? + + The function should return YES, if Vasya can sell + a ticket to every person and give change with the + bills he has at hand at that moment. Otherwise return NO. + :return: + ","0","Testing tickets function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" " Testing gap function with various test inputs @@ -145,160 +380,188 @@ The function should return 0 if num doesn't contain a binary gap. :return: - ","0","Testing gap function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing gap function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing string_to_array function. - - A function to split a string and - convert it into an array of words. + Test with regular string :return: - ","0","Testing string_to_array function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Test with regular string","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing two_decimal_places function - with various test inputs. - - Each number should be formatted that it is - rounded to two decimal places. You don't - need to check whether the input is a valid - number because only valid numbers are used - in the tests. + Testing number_of_sigfigs function + with various test inputs :return: - ","0","Testing two_decimal_places function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","16","Testing number_of_sigfigs function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Verify that multiply function - returns correct result + The function should return a formatted string. + The return value should equal ""Value is VALUE"" + where value is a 5 digit padded number. + :return: + ","0","Testing 'solution' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing 'DefaultList' class: append + :return: + ","0","Testing 'DefaultList' class: append","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" +" + 3 is not a square number + :return: + ","0","Simple test for empty string.","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +" + Large lists + :return: + ","0","Large lists","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing largestPower function :return: - ","0","'multiply' function verification","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing largestPower function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " Testing easy_diagonal function :param self: :return: - ","648","Testing easy_diagonal function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + ","695","Testing easy_diagonal function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing letter_frequency function - where all chars are in mixed case + Testing enough function + with various test data + + If there is enough space, return 0, + and if there isn't, return the number + of passengers he can't take. :return: - ","0","All chars are in mixed case","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","STesting enough function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Math","","" " - Test an algorithm that takes an array and moves all of the - zeros to the end, preserving the order of the other elements. + Testing the 'valid_braces' function + with various test data :return: - ","0","Testing move_zeros function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'valid_braces' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Advanced/random test case + Test the function that organizes a sports league in a + round-robin-system. Each team meets all other teams. + In your league a win gives a team 2 points, a draw gives + both teams 1 point. After some games you have to compute + the order of the teams in your league. You use the following + criteria to arrange the teams: + + - Points + - Scoring differential (the difference between goals scored and those conceded) + - Goals scored + :return: - ","0","test_random","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" -"","0","Testing Potion class","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Classes","","" + ","0","Testing compute_ranks","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" " - Testing 'snail' function + Verify that 'has_subpattern' function to returns + either true/True or false/False if a string can be + seen as the repetition of a simpler/shorter subpattern or not. - Given an n x n array, 'snail' function should return the array - elements arranged from outermost elements to the middle element, - traveling clockwise. - ","0","Testing 'snail' function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -"","0","test_solution_big","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + 1. if a subpattern has been used, it will be repeated + at least twice, meaning the subpattern has to be + shorter than the original string; + + 2. the strings you will be given might or might not + be created repeating a given subpattern, then + shuffling the result. + :return: + ","0","Testing 'has_subpattern' (part 2) function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" " - In this kata, you must create a digital root function. + Testing Sudoku class - A digital root is the recursive sum of all the digits - in a number. Given n, take the sum of the digits of n. - If that value has more than one digit, continue reducing - in this way until a single-digit number is produced. This - is only applicable to the natural numbers. + Given a Sudoku data structure with size NxN, N > 0 and âN == integer, + assert a method that validates if it has been filled out correctly. :return: - ","0","Testing digital_root function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing Sudoku class","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing 'vaporcode' function + Testing stock_list function with various test data :return: - ","0","Testing 'vaporcode' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing stock_list function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'sum_triangular_numbers' function - with negative numbers + Test string with no duplicate chars. :return: - ","0","Testing 'sum_triangular_numbers' with negative numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing easy_line function exception message","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" -"","0","Testing row_sum_odd_numbers function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -"","0","Testing zero_fuel function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","String with no duplicate chars","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - -1: Negative numbers cannot be square numbers + Testing first_non_repeated function :return: - ","0","Negative numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing first_non_repeated function with various inputs","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Assert that 'domain_name' function - returns domain name from given URL string. - + Verify that multiply function + returns correct result :return: - ","0","Testing domain_name function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","'multiply' function verification","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Math","","" " - Test that 'remove_char' function - removes the first and - last characters of a string. + Repeating char is a space. :return: - ","0","Testing remove_char function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","String alphabet chars and spaces","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing share_price function - with multiple test inputs + Testing 'letter_count' function :return: - ","0","Testing share_price function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'letter_count' function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Data Structures","","" " - Test the function called that takes a string of parentheses, - and determines if the order of the parentheses is valid. - The function should return true if the string is valid, - and false if it's invalid. - - Examples + Test a function `smallest` which will return an array or a tuple or a string + depending on the language (see ""Sample Tests""). + :return: + ","0","test_smallest","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Test a function validSolution/ValidateSolution/valid_solution() + that accepts a 2D array representing a Sudoku board, and returns + true if it is a valid solution, or false otherwise. The cells of + the sudoku board may also contain 0's, which will represent empty + cells. Boards containing one or more zeroes are considered to be + invalid solutions. - ""()"" => true - "")(()))"" => false - ""("" => false - ""(())((()())())"" => true + The board is always 9 cells by 9 cells, and every + cell only contains integers from 0 to 9. :return: - ","0","Testing valid_parentheses function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing validSolution","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - non-consecutive is a negative number. + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like null/undefined :return: - ","0","Negative non consecutive number should be returned","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'count_sheeps' function: bad input","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - In mathematics the number of x combinations you can take from a - set of n elements is called the binomial coefficient of n and x, - or more often n choose x. The formula to compute m = n choose x is: - m = n! / (x! * (n - x)!) where ! is the factorial operator. - - You are a renowned poster designer and painter. You are asked to - provide 6 posters all having the same design each in 2 colors. - Posters must all have a different color combination and you have - the choice of 4 colors: red, blue, yellow, green. How many colors - can you choose for each poster? - ","0","Testing checkchoose function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + Testing Line Safari functionality + Positive test cases + ","0","test_line_positive","Competent","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing 'DefaultList' class: __getitem__ - - Called to implement evaluation of self[key]. For sequence types, - the accepted keys should be integers and slice objects. - Note that the special interpretation of negative indexes - (if the class wishes to emulate a sequence type) is up to the - __getitem__() method. + Testing binary_to_string function + with various test data :return: - ","0","Testing 'DefaultList' class: __getitem__","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" + ","0","Testing binary_to_string function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Character Encodings","","" " - Testing 'sum_triangular_numbers' function - with positive numbers + a or b is negative :return: - ","0","Testing 'sum_triangular_numbers' with positive numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","a or b is negative","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing calc class - - Given a mathematical expression as a string you - must return the result as a number. - ","19","Testing calc function","Proficient","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing 'vaporcode' function + :return: + ","0","Testing 'vaporcode' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Sample testing. + :return: + ","0","Find the int that appears an odd number of times","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing Walker class + Testing starting position property based on positive grids + ","0","Testing Walker class - position property from positive grids","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Positive tests + :return: + ","0","Testing period_is_late function (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Negative testing permute_a_palindrome function + :return: + ","0","Testing permute_a_palindrome (negative)","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Negative test cases for gen_primes function testing + Testing pig_it function + + The function should mpve the first letter of each + word to the end of it, then add ""ay"" to the end + of the word. Leave punctuation marks untouched. :return: - ","0","Negative test cases for gen_primes function testing","Helper methods","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","No kyu helper methods","","" + ","0","Testing pig_it function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - 26 is not a square number + The 'pyramid' function should return + an Array of ascending length subarrays. + + Note: the subarrays should be filled with 1s. :return: - ","0","Non square numbers (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing the 'pyramid' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " Testing two_decimal_places function with various test inputs @@ -315,336 +578,251 @@ after two decimal places! :return: - ","0","Testing two_decimal_places function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing two_decimal_places function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing century function - ","0","Testing century function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Numbers","","" -" - Testing summation function - with various test inputs + Testing shark function -> positive :return: - ","0","Testing 'summation' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" -"","16","Testing calculate function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing shark function (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Test a function `smallest` which will return an array or a tuple or a string - depending on the language (see ""Sample Tests"") with - - 1) the smallest number you got - 2) the index i of the digit d you took, i as small as possible - 3) the index j (as small as possible) where you insert this digit d to have the smallest number. + The player rolls the dice and moves the number + of spaces indicated by the dice two times. + Pass position and roll and compare the output + to the expected result :return: - ","0","test_smallest","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","move function tests","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Math","","" " - Testing sum_for_list function + Testing epidemic function :return: - ","78","Testing sum_for_list function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing epidemic function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" " - If there are one or two good ideas, - return 'Publish!', + Use conditionals to to verify that greet + function returns the proper message. :return: - ","0","Should return 'Publish!'","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Verify that greet function returns the proper message","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Control Flow","","" " - 0 is a square number + Simple Fun #152: Invite More Women? + Testing invite_more_women function (positive) :return: - ","0","Zero","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing invite_more_women function (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing 'factorial' function - - In mathematics, the factorial of a non-negative integer n, - denoted by n!, is the product of all positive integers less - than or equal to n. For example: 5! = 5 * 4 * 3 * 2 * 1 = 120. - By convention the value of 0! is 1. - - Write a function to calculate factorial for a given input. - If input is below 0 or above 12 throw an exception of type - ValueError (Python). + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". :return: - ","0","Testing 'factorial' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Wolf at the beginning of the queue","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Control Flow","","" " - Testing make_readable function - - Write a function, which takes a non-negative integer - (seconds) as input and returns the time in a human-readable - format (HH:MM:SS) + Testing ips_between function - HH = hours, padded to 2 digits, range: 00 - 99 - MM = minutes, padded to 2 digits, range: 00 - 59 - SS = seconds, padded to 2 digits, range: 00 - 59 + Testing a function that receives two IPv4 addresses, + and returns the number of addresses between them + (including the first one, excluding the last one). - The maximum time never exceeds 359999 (99:59:59) + All inputs will be valid IPv4 addresses in the form + of strings. The last address will always be greater + than the first one. :return: - ","0","Testing make_readable function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","test_ips_between","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing permute_a_palindrome function + Testing 'parts_sums' function with various test data :return: - ","0","Testing permute_a_palindrome (positive)","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'parts_sums' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing a function named create_city_map where: - - n defines the size of the city that Bassi needs to hide in, - in other words the side length of the square grid. - - The function should generate city map with coordinates. + Testing 'sum_triangular_numbers' function + with zero as an input :return: - ","0","Testing create_city_map function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'sum_triangular_numbers' with zero","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing a function named first_non_repeating_letter - that takes a string input, and returns the first character - that is not repeated anywhere in the string. - - For example, if given the input 'stress', the function - should return 't', since the letter t only occurs once - in the string, and occurs first in the string. - - As an added challenge, upper- and lowercase letters are - considered the same character, but the function should - return the correct case for the initial letter. For example, - the input 'sTreSS' should return 'T'. - - If a string contains all repeating characters, it should - return an empty string ("""") or None -- see sample tests. + Testing summation function + with various test inputs :return: - ","0","Testing first_non_repeating_letter function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'summation' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Control Flow","","" " - Exclusive or or exclusive disjunction is a - logical operation that outputs true only when - inputs differ (one is true, the other is false). - - XOR outputs true whenever the inputs differ: - - Source: - https://en.wikipedia.org/wiki/Exclusive_or + Testing sum_for_list function :return: - ","16","XOR logical operator","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","78","Testing sum_for_list function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing done_or_not function - - Testing a function done_or_not/DoneOrNot passing a board - (list[list_lines]) as parameter. If the board is valid return - 'Finished!', otherwise return 'Try again!' + Testing get_size function with various inputs :return: - ","0","Testing done_or_not function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","get_size function tests","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Math","","" " - Testing greek_comparator function - with various test inputs + Testing letter_frequency function + where all chars are in mixed case + :return: + ","0","All chars are in mixed case","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + a an b are positive numbers :return: - ","0","Testing 'greek_comparator' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" -"","0","Testing hoop_count function (negative test case)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" + ","0","a an b are positive numbers","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Test string with no alphabet chars + Testing a function named agents_cleanup where: + - agents: is an array of agent coordinates + - n: defines the size of the city that Bassi needs to hide in, + in other words the side length of the square grid. + + The function should remove all agents that are outside of the city boundaries. :return: - ","0","String with no alphabet chars","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing agents_cleanup function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " Testing encrypt_this function :param self: :return: - ","0","Testing encrypt_this function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing encrypt_this function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing sum_of_intervals function + In logic and mathematics, or is the + truth-functional operator of (inclusive) + disjunction, also known as alternation. - The function should accept an array of intervals, - and return the sum of all the interval lengths. + The or of a set of operands is true if + and only if one or more of its operands is true. - Overlapping intervals should only be counted once. + Source: + https://en.wikipedia.org/wiki/Logical_disjunction - Intervals - Intervals are represented by a pair of integers in - the form of an array. The first value of the interval - will always be less than the second value. - Interval example: [1, 5] is an interval from 1 to 5. - The length of this interval is 4. :return: - ","0","Testing sum_of_intervals function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","OR logical operator","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing is_solved function - - The function should return whether the - board's current state is solved. - - We want our function to return: - - -1 if the board is not yet finished (there are empty spots), - 1 if ""X"" won, - 2 if ""O"" won, - 0 if it's a cat's game (i.e. a draw). - ","0","Testing done_or_not function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing swap_values function + ","0","Testing swap_values function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing the 'unique_in_order' function - with various test data + Test lists with multiple digits :return: - ","0","Testing the 'unique_in_order' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" -"","0","Testing likes function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + ","0","'multiply' function verification: lists with multiple digits","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - The player rolls the dice and moves the number - of spaces indicated by the dice two times. - - Pass position and roll and compare the output - to the expected result + Testing potion function with various test inputs :return: - ","0","move function tests","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing Potion class","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Classes","","" " - Testing Battleship field validator + In this kata, you must create a digital root function. - Testing a method that takes a field for well-known board game ""Battleship"" - as an argument and returns true if it has a valid disposition of ships, - false otherwise. Argument is guaranteed to be 10*10 two-dimension array. - Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship. - ","0","Testing validate_battlefield function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Testing shark function -> negative + A digital root is the recursive sum of all the digits + in a number. Given n, take the sum of the digits of n. + If that value has more than one digit, continue reducing + in this way until a single-digit number is produced. This + is only applicable to the natural numbers. :return: - ","0","Testing shark function (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -" - Testing 'mix' function - - Given two strings s1 and s2, the 'mix' function - should visualize how different the two strings are. - ","0","Testing 'mix' function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing digital_root function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - a an b are positive numbers + Simple Fun #152: Invite More Women? + Testing invite_more_women function (negative) :return: - ","0","a an b are positive numbers","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing invite_more_women function (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Test a function validSolution/ValidateSolution/valid_solution() - that accepts a 2D array representing a Sudoku board, and returns - true if it is a valid solution, or false otherwise. The cells of - the sudoku board may also contain 0's, which will represent empty - cells. Boards containing one or more zeroes are considered to be - invalid solutions. - - The board is always 9 cells by 9 cells, and every - cell only contains integers from 0 to 9. + Testing a function named increment_string :return: - ","0","Testing validSolution","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Testing 'is_isogram' function - ","0","Testing 'is_isogram' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" -"","0","Testing easy_line function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing increment_string function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like mixed list + Testing greek_comparator function + with various test inputs :return: - ","0","Testing 'count_sheeps' function: mixed list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'greek_comparator' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - String subpattern recognition I + Testing alphabet_war function - Verify that 'has_subpattern' function to returns - either true/True or false/False if a string can be - seen as the repetition of a simpler/shorter subpattern or not. - :return: - ","0","Testing 'has_subpattern' (part 1) function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" -"","0","Testing to_table function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" -" - Test with empty list - :return: - ","0","'multiply' function verification with empty list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Test namelist + Introduction + There is a war and nobody knows - the alphabet war! + The letters hide in their nuclear shelters. The + nuclear strikes hit the battlefield and killed a + lot of them. - Given: - an array containing hashes of names + Task + Write a function that accepts battlefield string + and returns letters that survived the nuclear strike. - Return: - a string formatted as a list of names separated by commas - except for the last two names, which should be separated - by an ampersand. + 1. The battlefield string consists of only small letters, #,[ and ]. - :return: - ","0","String with no duplicate chars","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - Testing Walker class - Testing starting position property based on negative grids - ","0","test_starting_position_from_negatives","Competent","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Test that a function that given a sequence of strings, groups the elements - that can be obtained by rotating others, ignoring upper or lower cases. + 2. The nuclear shelter is represented by square brackets []. + The letters inside the square brackets represent letters + inside the shelter. - In the event that an element appears more than once in the input sequence, - only one of them will be taken into account for the result, discarding the rest. - :return: - ","0","Testing the 'group_cities' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - Testing first_non_repeated function - :return: - ","0","Testing first_non_repeated function with various inputs","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - 25 is a square number + 3. The # means a place where nuclear strike hit the battlefield. + If there is at least one # on the battlefield, all letters outside + of shelter die. When there is no any # on the battlefield, all letters + survive (but do not expect such scenario too often ;-P ). + + 4. The shelters have some durability. When 2 or more # hit close to + the shelter, the shelter is destroyed and all letters inside evaporate. + The 'close to the shelter' means on the ground between the shelter and + the next shelter (or beginning/end of battlefield). The below samples + make it clear for you. :return: - ","0","Square numbers (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -"","0","test_solution_empty","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing alphabet_war function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing swap_values function - ","0","Testing swap_values function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Testing 'sum_triangular_numbers' function - with big number as an input - :return: - ","0","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing odd_row function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Performance","","" + Test top_3_words function + ","0","Testing top_3_words function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing 'sentencify' function. - - The function should: - - 1. Capitalise the first letter of the first word. - 2. Add a period (.) to the end of the sentence. - 3. Join the words into a complete string, with spaces. - 4. Do no other manipulation on the words. + Testing 'solution' function + The solution should strips all text that follows any + of a set of comment markers passed in. Any whitespace at + the end of the line should also be stripped out. + ","0","Testing 'solution' function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + -1: Negative numbers cannot be square numbers :return: - ","0","Testing 'solution' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Negative numbers","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Testing largestPower function + 26 is not a square number :return: - ","0","Testing largestPower function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Non square numbers (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - If the whole array is consecutive then return - null or Nothing or None. + Test a function that will find all the anagrams of a word from a list. + You will be given two inputs a word and an array with words. You should + return an array of all the anagrams or an empty array if there are none. :return: - ","0","Non is expected","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing anagrams function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - The string ""This website is for losers LOL!"" - should become ""Ths wbst s fr lsrs LL!"" + Test that a function that given a sequence of strings, + groups the elements that can be obtained by rotating others, + ignoring upper or lower cases. + + In the event that an element appears more than once in + the input sequence, only one of them will be taken into + account for the result, discarding the rest. :return: - ","0","a and b are equal","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing the 'group_cities' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Simple positive test + Testing to_alternating_case function :return: - ","0","Testing toJadenCase function (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing to_alternating_case function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing check_root function with various test inputs + Testing sum_of_intervals function - A function which takes numbers separated by commas - in string format and returns the number which is a - perfect square and the square root of that number. + The function should accept an array of intervals, + and return the sum of all the interval lengths. - If string contains other characters than number or - it has more or less than 4 numbers separated by comma - function returns ""incorrect input"". + Overlapping intervals should only be counted once. - If string contains 4 numbers but not consecutive it - returns ""not consecutive"". + Intervals + Intervals are represented by a pair of integers in + the form of an array. The first value of the interval + will always be less than the second value. + Interval example: [1, 5] is an interval from 1 to 5. + The length of this interval is 4. :return: - ","0","Testing check_root function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing sum_of_intervals function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing a function named advice(agents, n) where: - - agents is an array of agent coordinates. - - n defines the size of the city that Bassi needs to hide in, - in other words the side length of the square grid. - - The function should return a list of coordinates that are the furthest - away (by Manhattan distance) from all agents. + The function powers takes a single parameter, + the number n, and should return an array of + unique numbers. :return: - ","125","Testing advice function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","powers function should return an array of unique numbers","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing pig_it function - - The function should mpve the first letter of each - word to the end of it, then add ""ay"" to the end - of the word. Leave punctuation marks untouched. + a and b are equal + :return: + ","0","a and b are equal","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +" + if there are more than 2 return + 'I smell a series!'. + :return: + ","0","Should return 'I smell a series!'","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" +" + Advanced/random test case :return: - ","0","Testing pig_it function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","test_random","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" +" + Test string with alphabet chars only. + :return: + ","0","String with alphabet chars only","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " The 'sort_array' function. @@ -656,340 +834,251 @@ to return it. :return: - ","16","Testing the 'sort_array' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing the 'sort_array' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Test string with alphabet chars only + Testing 'sum_triangular_numbers' function + with negative numbers :return: - ","0","String with alphabet chars only","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'sum_triangular_numbers' with negative numbers","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - You are given two angles (in degrees) of a triangle. - Find the 3rd. + Basic test case :return: - ","0","You are given two angles -> find the 3rd.","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","test_basic","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" " - Testing string_transformer function - with multiple test data. - - Given a string, return a new string that has - transformed based on the input: - - 1. Change case of every character, ie. lower - case to upper case, upper case to lower case. - - 2. Reverse the order of words from the input. + Testing is_palindrome function + with various test inputs - :return: - ","0","Testing string_transformer function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Data Structures","","" + The function should check if a + given string (case insensitive) + is a palindrome. + ","0","Testing is_palindrome function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing a function that checks if a given number n is a prime - looping through it and, possibly, expanding the array/list of - known primes only if/when necessary (ie: as soon as you check - for a potential prime which is greater than a given threshold - for each n, stop). - + 3 is not a square number :return: - ","16","Testing is_prime function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Non square numbers (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Verify that the function returns Messi's - total number of goals in all three leagues. + Test that no_space function removes the spaces + from the string, then return the resultant string. :return: - ","0","goals function verification","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Test that no_space function removes the spaces","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing 'letter_count' function + If there are one or two good ideas, + return 'Publish!', :return: - ","0","Testing 'letter_count' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Data Structures","","" -" - Testing next_bigger function - - You have to test a function that takes a positive integer - number and returns the next bigger number formed by the same digits: - - 12 ==> 21 - 513 ==> 531 - 2017 ==> 2071 - - If no bigger number can be composed using those digits, return -1 - ","0","Testing next_bigger function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Should return 'Publish!'","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing 'feast' function with various test inputs - - Testing a function feast that takes the animal's - name and dish as arguments and returns true or - false to indicate whether the beast is allowed - to bring the dish to the feast. - - Assume that beast and dish are always lowercase strings, - and that each has at least two letters. beast and dish - may contain hyphens and spaces, but these will not appear - at the beginning or end of the string. They will not - contain numerals. + String subpattern recognition I - There is just one rule: the dish must start and end with - the same letters as the animal's name. For example, the - great blue heron is bringing garlic naan and the chickadee - is bringing chocolate cake. + Verify that 'has_subpattern' function to returns + either true/True or false/False if a string can be + seen as the repetition of a simpler/shorter subpattern or not. :return: - ","0","Testing 'feast' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'has_subpattern' (part 1) function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" " - Testing number_of_sigfigs function - with various test inputs - :return: - ","0","Testing number_of_sigfigs function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + Testing 'mix' function + + Given two strings s1 and s2, the 'mix' function + should visualize how different the two strings are. + ","0","Testing 'mix' function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Fundamentals","","" " - In this kata you have to correctly return who - is the ""survivor"", ie: the last element of a - Josephus permutation. + Testing share_price function + with multiple test inputs :return: - ","0","test_josephus_survivor","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing share_price function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Positive test cases for is_prime function testing + Negative test cases for gen_primes function testing :return: - ","0","Positive test cases for is_prime function testing","Helper methods","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","No kyu helper methods","","" + ","0","Negative test cases for gen_primes function testing","Helper methods","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","No kyu helper methods","","" " - Testing check_for_factor function. - - This function should test if the - factor is a factor of base. + Testing 'save' function: positive - Return true if it is a factor. - :return: - ","0","Testing check_for_factor function: positive flow","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -" - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + The function should determine how many + files of the copy queue you will be able + to save into your Hard Disk Drive. :return: - ","0","Wolf in the middle of the queue","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" + ","0","Testing 'save' function: positive","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " If we have an array [1,2,3,4,6,7,8] then 1 then 2 then 3 then 4 are all consecutive but 6 is not, so that's the first non-consecutive number. :return: - ","0","Non consecutive number should be returned","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Non consecutive number should be returned","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - For this exercise you will create a global flatten method. - The method takes in any number of arguments and flattens - them into a single array. If any of the arguments passed in - are an array then the individual objects within the array - will be flattened so that they exist at the same level as - the other arguments. Any nested arrays, no matter how deep, - should be flattened into the single array result. - - The following are examples of how this function would be - used and what the expected results would be: - - flatten(1, [2, 3], 4, 5, [6, [7]]) # returns [1, 2, 3, 4, 5, 6, 7] - flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns ['a', 'b', 2, 3, None, 4, 'c'] + Test string with no alphabet chars. :return: - ","0","Testing flatten function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","String with no alphabet chars","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (positive) - :return: - ","0","Testing invite_more_women function (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -"","0","test_solution_basic","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing solution function + ","0","Testing solution function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Basic test case + Testing 'numericals' function :return: - ","0","test_basic","Beginner","Mon Aug 26 21:37:54 PDT 2024","passed","Mon Aug 26 21:37:54 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'numericals' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - If there are no good ideas, - as is often the case, return 'Fail!'. + Testing string_transformer function + with multiple test data. + + Given a string, return a new string that has + transformed based on the input: + + 1. Change case of every character, ie. lower + case to upper case, upper case to lower case. + + 2. Reverse the order of words from the input. + :return: - ","0","Should return 'Fail!'s","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing string_transformer function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing 'save' function: positive + Test a function that should take a shuffled list of + unique numbers from 1 to n with one element missing + (which can be any number including n). Should return + this missing number. - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. :return: - ","0","Testing 'save' function: positive","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing the 'find_missing_number' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing 'count_sheeps' function - Consider an array of sheep where some sheep - may be missing from their place. - We need a function that counts the - number of sheep present in the array - (true means present). + Testing length function + The method length, which accepts a linked list + (head), and returns the length of the list. :return: - ","0","Testing 'count_sheeps' function: positive flow","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing length function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing litres function with various test inputs + Testing shark function -> negative :return: - ","15","Testing litres function with various test inputs","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing shark function (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Basic test case + Testing 'DefaultList' class: remove :return: - ","0","test_triangle","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'DefaultList' class: remove","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" " - 4 is a square number + Test valid_parentheses function with + invalid large string :return: - ","0","Square numbers (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Test for invalid large string","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing Sudoku class + Testing done_or_not function - Given a Sudoku data structure with size NxN, N > 0 and âN == integer, - assert a method that validates if it has been filled out correctly. + Testing a function done_or_not/DoneOrNot passing a board + (list[list_lines]) as parameter. If the board is valid return + 'Finished!', otherwise return 'Try again!' :return: - ","16","Testing Sudoku class","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing done_or_not function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing 'save' function: negative + Verify that 'has_subpattern' function - The function should determine how many - files of the copy queue you will be able - to save into your Hard Disk Drive. + Return a subpattern with sorted characters, + otherwise return the base string with sorted + characters (you might consider this case as + an edge case, with the subpattern being repeated + only once and thus equalling the original input string). :return: - ","0","Testing 'save' function: negative","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'has_subpattern' (part 3) function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" " - For a given string s find the character c (or C) with - longest consecutive repetition and return: (c, l) - where l (or L) is the length of the repetition. + Testing a function that checks if a given number n is a prime + looping through it and, possibly, expanding the array/list of + known primes only if/when necessary (ie: as soon as you check + for a potential prime which is greater than a given threshold + for each n, stop). - For empty string return: ('', 0) :return: - ","0","Testing 'longest_repetition' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","16","Testing is_prime function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing Warrior class >>> bruce_lee - ","15","Testing Warrior class >>> bruce_lee","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","OOP","","" + Testing 'generate_hashtag' function + ","0","Testing 'generate_hashtag' function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Sample Tests for make_upper_case function + Testing make_class function :return: - ","0","Testing make_upper_case function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing make_class function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","OOP","","" " - Test sum_two_smallest_numbers function - The function should return the sum of - the two lowest positive numbers + -1: Negative numbers cannot be square numbers :return: - ","0","Two smallest numbers in the start of the list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","15","Simple test for valid parentheses","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing list_squared function - + Returns [] if list has only one element :return: - ","125","Testing list_squared function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","11","'multiply' function verification with one element list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Test the function that organizes a sports league in a - round-robin-system. Each team meets all other teams. - In your league a win gives a team 2 points, a draw gives - both teams 1 point. After some games you have to compute - the order of the teams in your league. You use the following - criteria to arrange the teams: - - - Points - - Scoring differential (the difference between goals scored and those conceded) - - Goals scored - + Testing letter_frequency function + where all chars are in lower case :return: - ","0","Testing compute_ranks","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","All chars are in lower case","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'sum_pairs' function + + Given a list of integers and a single sum value, + the function should return the first two values + (parse from the left please) in order of appearance + that add up to form the sum. + ","0","Testing done_or_not function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Test that no_space function removes the spaces - from the string, then return the resultant string. + Positive test cases for gen_primes function testing :return: - ","0","Test that no_space function removes the spaces","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Positive test cases for gen_primes function testing","Helper methods","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","No kyu helper methods","","" " - Testing 'solution' function. - - The should return a formatted string. - The return value should equal ""Value is VALUE"" - where value is a 5 digit padded number. + Testing odd_row function with various test data :return: - ","0","Testing 'solution' function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -"","0","test_solution_medium","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing odd_row function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Performance","","" " - Testing make_class function + Testing 'count_sheeps' function + Consider an array of sheep where some sheep + may be missing from their place. + We need a function that counts the + number of sheep present in the array + (true means present). :return: - ","0","Testing make_class function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","OOP","","" + ","0","Testing 'count_sheeps' function: positive flow","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Positive test cases for gen_primes function testing + non-consecutive is a negative number. :return: - ","0","Positive test cases for gen_primes function testing","Helper methods","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","No kyu helper methods","","" + ","0","Negative non consecutive number should be returned","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - If the wolf is the closest animal to you, - return ""Pls go away and stop eating my sheep"". + Testing calc_combinations_per_row function :return: - ","0","Wolf at the beginning of the queue","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" + ","0","Testing calc_combinations_per_row function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Test a function dirReduc which will take an array of - strings and returns an array of strings with the needless - directions removed (W<->E or S<->N side by side). - - The Haskell version takes a list of directions with - data Direction = North | East | West | South. - - The Clojure version returns nil when the path is - reduced to nothing. - - The Rust version takes a slice of enum Direction - {NORTH, SOUTH, EAST, WEST}. + Testing 'shortest_job_first' function with various test data :return: - ","0","Testing dirReduc function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing 'shortest_job_first(' function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Test with empty string + Testing likes function with various test data :return: - ","0","Test with empty string","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing likes function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing permutations function - - Test that permutations function creates all - permutations of an input string and - remove duplicates, if present. This means, you - have to shuffle all letters from the input in all - possible orders. - ","0","test_permutations","Competent","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing password function with various test inputs + :return: + ","0","Testing password function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing solution function - ","0","Testing solution function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing 'sum_triangular_numbers' function + with big number as an input + :return: + ","0","Testing 'sum_triangular_numbers' with big number as an input","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing 'solution' function - - The solution should strips all text that follows any - of a set of comment markers passed in. Any whitespace at - the end of the line should also be stripped out. - ","15","Testing 'solution' function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Testing calculate function with various test data + :return: + ","16","Testing calculate function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Verify that 'has_subpattern' function to returns - either true/True or false/False if a string can be - seen as the repetition of a simpler/shorter subpattern or not. - - 1. if a subpattern has been used, it will be repeated - at least twice, meaning the subpattern has to be - shorter than the original string; - - 2. the strings you will be given might or might not - be created repeating a given subpattern, then - shuffling the result. + Testing duplicate_encode function + with various test inputs :return: - ","16","Testing 'has_subpattern' (part 2) function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" + ","0","Testing duplicate_encode function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - If the wolf is not the closest animal to you, - return ""Oi! Sheep number N! You are about to be eaten by a wolf!"" - where N is the sheep's position in the queue. + Testing calculate_damage with various test data :return: - ","0","Wolf at the end of the queue","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" + ","0","Testing calculate_damage function","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Games","","" " - Testing hoop_count function - - Alex just got a new hula hoop, he loves it but feels - discouraged because his little brother is better than him + Test namelist - Write a program where Alex can input (n) how many times - the hoop goes round and it will return him an encouraging message + Given: + an array containing hashes of names - - If Alex gets 10 or more hoops, return the string ""Great, now move on to tricks"". - - If he doesn't get 10 hoops, return the string ""Keep at it until you get it"". + Return: + a string formatted as a list of names separated by commas + except for the last two names, which should be separated + by an ampersand. :return: - ","0","Testing hoop_count function (positive test case)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" -" - Testing letter_frequency function - where all chars are in upper case - :return: - ","16","All chars are in upper case","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - if there are more than 2 return - 'I smell a series!'. - :return: - ","0","Should return 'I smell a series!'","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","String with no duplicate chars","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " Testing growing_plant function @@ -1030,240 +1119,136 @@ The number of days that it will take for the plant to reach/pass desiredHeight (including the last day in the total count). - ","0","Testing growing_plant function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" -" - Testing 'DefaultList' class: extend - :return: - ","0","Testing 'DefaultList' class: extend","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" -" - Test string with mixed type of chars - :return: - ","0","String with mixed type of chars","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing stock_list function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" -"","0","Testing count_letters_and_digits function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" -"","0","Testing take function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Test string with no duplicate chars - :return: - ","0","String with no duplicate chars","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - Testing 'generate_hashtag' function - ","0","Testing 'generate_hashtag' function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Testing Encoding functionality - ","0","Testing Encoding functionality","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing growing_plant function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Verify that 'has_subpattern' function + For this exercise you will create a global flatten method. + The method takes in any number of arguments and flattens + them into a single array. If any of the arguments passed in + are an array then the individual objects within the array + will be flattened so that they exist at the same level as + the other arguments. Any nested arrays, no matter how deep, + should be flattened into the single array result. - Return a subpattern with sorted characters, - otherwise return the base string with sorted - characters (you might consider this case as - an edge case, with the subpattern being repeated - only once and thus equalling the original input string). - :return: - ","0","Testing 'has_subpattern' (part 3) function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" -" - Testing password function with various test inputs - :return: - ","0","Testing password function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Testing enough function - with various test data + The following are examples of how this function would be + used and what the expected results would be: - If there is enough space, return 0, - and if there isn't, return the number - of passengers he can't take. - :return: - ","0","STesting enough function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -"","0","Testing calculate_damage function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Games","","" -" - Use conditionals to to verify that greet - function returns the proper message. + flatten(1, [2, 3], 4, 5, [6, [7]]) # returns [1, 2, 3, 4, 5, 6, 7] + flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns + ['a', 'b', 2, 3, None, 4, 'c'] :return: - ","0","Verify that greet function returns the proper message","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Control Flow","","" -" - Testing spiralize function - ","0","Testing spiralize function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing flatten function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing check_exam function - - The function should return the score - for this array of answers, giving +4 - for each correct answer, -1 for each - incorrect answer, and +0 for each blank - answer(empty string). + Testing 'DefaultList' class: __getitem__ + Called to implement evaluation of self[key]. For sequence + types, the accepted keys should be integers and slice objects. + Note that the special interpretation of negative indexes + (if the class wishes to emulate a sequence type) is up to the + __getitem__() method. :return: - ","0","Testing check_exam function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'DefaultList' class: __getitem__","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing shark function -> positive + Testing decipher_this function + :param self: :return: - ","0","Testing shark function (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -"","0","Testing permute_a_palindrome (negative)","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing decipher_this function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" " - Testing 'DefaultList' class: pop + Testing 'DefaultList' class: insert :return: - ","0","Testing 'DefaultList' class: pop","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" -"","0","Testing array_diff function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'DefaultList' class: insert","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" " - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like empty list - :return: - ","0","Testing 'count_sheeps' function: empty list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + Testing Warrior class >>> bruce_lee + ","0","Testing Warrior class >>> bruce_lee","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","OOP","","" " - Testing 'DefaultList' class: append + Simple negative test :return: - ","16","Testing 'DefaultList' class: append","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" + ","0","Testing toJadenCase function (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Returns a list that misses only one element + Sample Tests for make_upper_case function :return: - ","0","'multiply' function verification with random list","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing make_upper_case function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - a and b are equal + Testing 'solve' function with various test data :return: - ","0","a and b are equal","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing binary_to_string function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Character Encodings","","" -"","0","Testing 'thirt' function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing solve function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing tickets function with various test inputs. - - The new ""Avengers"" movie has just been released! - There are a lot of people at the cinema box office - standing in a huge line. Each of them has a single - 100, 50 or 25 dollar bill. An ""Avengers"" ticket - costs 25 dollars. - - Vasya is currently working as a clerk. - He wants to sell a ticket to every single person - in this line. - - Can Vasya sell a ticket to every person and give change - if he initially has no money and sells the tickets strictly - in the order people queue? - - The function should return YES, if Vasya can sell - a ticket to every person and give change with the - bills he has at hand at that moment. Otherwise return NO. + Test with empty string :return: - ","0","Testing tickets function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Advanced Language Features","","" + ","0","Test with empty string","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Test with regular string + Assert that 'domain_name' function + returns domain name from given URL string. :return: - ","0","Test with regular string","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Test top_3_words function - ","0","Testing top_3_words function","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing domain_name function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing decipher_this function - :param self: - :return: - ","0","Testing decipher_this function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + Testing Line Safari functionality + Negative test cases + ","0","test_line_negative","Competent","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing to_alternating_case function + Testing 'sum_triangular_numbers' function + with positive numbers :return: - ","16","Testing to_alternating_case function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'sum_triangular_numbers' with positive numbers","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing a function named increment_string + Testing permutations function + Test that permutations function creates all + permutations of an input string and + remove duplicates, if present. This means, you + have to shuffle all letters from the input in all + possible orders. + ","0","test_permutations","Competent","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Test with empty list :return: - ","0","Testing increment_string function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","'multiply' function verification with empty list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing 'sum_triangular_numbers' function - with zero as an input + Testing hoop_count function (negative) :return: - ","0","Testing 'sum_triangular_numbers' with zero","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing hoop_count function (negative test case)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" " - Testing a function named agents_cleanup where: - - agents: is an array of agent coordinates - - n: defines the size of the city that Bassi needs to hide in, - in other words the side length of the square grid. - - The function should remove all agents that are outside of the city boundaries. + Basic test case :return: - ","0","Testing agents_cleanup function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing calc_combinations_per_row function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" + ","0","test_triangle","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing men_from_boys function with - various test inputs - - Scenario - Now that the competition gets tough it - will Sort out the men from the boys . - - Men are the Even numbers and Boys are - the odd !alt !alt - - Task - Given an array/list [] of n integers , - Separate The even numbers from the odds , - or Separate the men from the boys !alt !alt - - Notes - Return an array/list where Even numbers - come first then odds. - Since , Men are stronger than Boys , - Then Even numbers in ascending order - While odds in descending. + Testing the function with various test data :return: - ","0","Testing men_from_boys function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing take function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " Testing length function + where head = None The method length, which accepts a linked list (head), and returns the length of the list. :return: - ","0","Testing length function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -"","0","Testing solve function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -" - Testing 'count_sheeps' function - Hint: Don't forget to check for - bad values like null/undefined - :return: - ","16","Testing 'count_sheeps' function: bad input","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Test with one char only - :return: - ","0","Test with one char only","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing length function where head = None","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing shark function -> positive - :return: - ","0","Testing shark function (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -" - Testing 'numericals' function + Testing to_table with various test data :return: - ","0","Testing 'numericals' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - Testing alphanumeric function with - various test inputs - - The string has the following conditions - to be alphanumeric only - - 1. At least one character ("""" is not valid) - 2. Allowed characters are uppercase or lowercase - latin letters and digits from 0 to 9 - 3. No whitespaces or underscore or special chars - - :return: None - ","0","Testing alphanumeric function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Advanced Language Features","","" -"","0","'fix_the_meerkat function function verification","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" -" - Testing Line Safari functionality - Negative test cases - ","0","test_line_negative","Competent","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing to_table function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" " - Testing ips_between function + Testing 'save' function: negative - Testing a function that receives two IPv4 addresses, - and returns the number of addresses between them - (including the first one, excluding the last one). + The function should determine how many + files of the copy queue you will be able + to save into your Hard Disk Drive. + :return: + ","0","Testing 'save' function: negative","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Test a function dir_reduc which will take an array of + strings and returns an array of strings with the needless + directions removed (W<->E or S<->N side by side). - All inputs will be valid IPv4 addresses in the form - of strings. The last address will always be greater - than the first one. + The Haskell version takes a list of directions with + data Direction = North | East | West | South. + + The Clojure version returns nil when the path is + reduced to nothing. + + The Rust version takes a slice of enum Direction + {NORTH, SOUTH, EAST, WEST}. :return: - ","0","test_ips_between","Novice","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing dir_reduc function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " Testing all_fibonacci_numbers function @@ -1277,49 +1262,46 @@ Every element afterwards is the sum of the two previous elements. :return: - ","0","Testing all_fibonacci_numbers function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","16","Testing all_fibonacci_numbers function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Testing check_for_factor function. - - This function should test if the - factor is a factor of base. + Testing max_multiple function with + various test data - Return false if it is not a factor. :return: - ","0","Testing check_for_factor function: positive flow","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" -" - Testing 'zeros' program that should calculate the number - of trailing zeros in a factorial of a given number. - :return: None - ","0","Testing zeros function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing max_multiple function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing get_size function with various inputs + Testing 'factorial' function + + In mathematics, the factorial of a non-negative integer n, + denoted by n!, is the product of all positive integers less + than or equal to n. For example: 5! = 5 * 4 * 3 * 2 * 1 = 120. + By convention the value of 0! is 1. + + Write a function to calculate factorial for a given input. + If input is below 0 or above 12 throw an exception of type + ValueError (Python). :return: - ","0","get_size function tests","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Testing 'factorial' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing 'sum_pairs' function + Testing Battleship field validator - Given a list of integers and a single sum value, - the function should return the first two values - (parse from the left please) in order of appearance - that add up to form the sum. - ","0","Testing done_or_not function","Novice","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" -"","0","test_sequence","Novice","Mon Aug 26 22:05:28 PDT 2024","skipped","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + Testing a method that takes a field for well-known board game ""Battleship"" + as an argument and returns true if it has a valid disposition of ships, + false otherwise. Argument is guaranteed to be 10*10 two-dimension array. + Elements in the array are numbers, 0 if the cell is free and 1 if occupied + by ship. + ","16","Testing validate_battlefield function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Test a function that should take a shuffled list of unique numbers - from 1 to n with one element missing (which can be any - number including n). Should return this missing number. - + Testing letter_frequency function + where all chars are in upper case :return: - ","16","Testing the 'find_missing_number' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" -" - Testing Walker class - Testing starting position property based on positive grids - ","0","test_starting_position_from_positives","Competent","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + ","0","All chars are in upper case","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Negative tests + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like empty list :return: - ","0","Testing period_is_late function (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing 'count_sheeps' function: empty list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " Testing set_alarm function with various test inputs. @@ -1335,80 +1317,132 @@ setAlarm(false, false) -> false setAlarm(true, false) -> true :return: - ","0","Testing set_alarm function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing set_alarm function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - The 'pyramid' function should return - an Array of ascending length subarrays. + Testing two_decimal_places function + with various test inputs. - Note: the subarrays should be filled with 1s. + Each number should be formatted that it is + rounded to two decimal places. You don't + need to check whether the input is a valid + number because only valid numbers are used + in the tests. :return: - ","0","Testing the 'pyramid' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing two_decimal_places function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Testing Calculator class - A simple calculator that given a string of operators '()', '+', '-', '*', '/' - and numbers separated by spaces will return the value of that expression + If the wolf is the closest animal to you, + return ""Pls go away and stop eating my sheep"". + :return: + ","0","Wolf in the middle of the queue","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Control Flow","","" +" + The string ""This website is for losers LOL!"" + should become ""Ths wbst s fr lsrs LL!"" + :return: + ","0","a and b are equal","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Advanced Language Features","","" +" + Testing a function named advice(agents, n) where: + - agents is an array of agent coordinates. + - n defines the size of the city that Bassi needs to hide in, + in other words the side length of the square grid. - :return: None - ","15","Testing Calculator class","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + The function should return a list of coordinates that are the furthest + away (by Manhattan distance) from all agents. + :return: + ","31","Testing advice function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - 3 is not a square number + Negative test cases for is_prime function testing :return: - ","0","Non square numbers (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Math","","" + ","0","Negative test cases for is_prime function testing","Helper methods","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","No kyu helper methods","","" " - Repeating char is a space + Testing the function with various test data :return: - ","0","String alphabet chars and spaces","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing row_sum_odd_numbers function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Simple Fun #152: Invite More Women? - Testing invite_more_women function (negative) + Testing the function with various test data :return: - ","0","Testing invite_more_women function (negative)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing zero_fuel function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Algorithms","","" " - Testing length function - where head = None + Testing permute_a_palindrome function + :return: + ","0","Testing permute_a_palindrome (positive)","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'thirt' function with various test data + :return: + ","0","Testing 'thirt' function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Fundamentals","","" +" + Test sum_two_smallest_numbers function + The function should return the sum of + the two lowest positive numbers + :return: + ","0","Two smallest numbers in the start of the list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing 'zeros' program that should calculate the number + of trailing zeros in a factorial of a given number. + :return: None + ","16","Testing zeros function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" +" + Testing check_for_factor function. - The method length, which accepts a linked list - (head), and returns the length of the list. + This function should test if the + factor is a factor of base. + + Return false if it is not a factor. :return: - ","0","Testing length function where head = None","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing check_for_factor function: positive flow","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Positive tests + Testing fix_the_meerkat function with various test data :return: - ","0","Testing period_is_late function (positive)","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","fix_the_meerkat function function verification","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" " - Testing letter_frequency function - where all chars are in lower case + You are given two angles (in degrees) of a triangle. + Find the 3rd. :return: - ","0","All chars are in lower case","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Algorithms","","" + ","0","You are given two angles -> find the 3rd.","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Math","","" " - Testing Decoding functionality - ","0","Testing Decoding functionality","Competent","Mon Aug 26 22:05:27 PDT 2024","passed","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + 0 is a square number + :return: + ","0","Zero","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Sample testing. - Expected result is 5 + 0 is a square number :return: - ","0","Find the int that appears an odd number of times","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Data Structures","","" + ","0","Simple test for invalid parentheses","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Testing 'DefaultList' class: insert + Testing century function + ","0","Testing century function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Numbers","","" +" + Testing 'DefaultList' class: pop :return: - ","0","Testing 'DefaultList' class: insert","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Object-Oriented Programming","","" + ","0","Testing 'DefaultList' class: pop","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Object-Oriented Programming","","" " - In logic and mathematics, or is the - truth-functional operator of (inclusive) - disjunction, also known as alternation. - - The or of a set of operands is true if - and only if one or more of its operands is true. - - Source: - https://en.wikipedia.org/wiki/Logical_disjunction + Testing Calculator class + A simple calculator that given a string of operators '()', '+', '-', '*', '/' + and numbers separated by spaces will return the value of that expression + :return: None + ","0","Testing Calculator class","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Test with one char only + :return: + ","16","Test with one char only","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" +" + Negative tests + :return: + ","0","Testing period_is_late function (negative)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Testing a function named create_city_map where: + - n defines the size of the city that Bassi needs to hide in, + in other words the side length of the square grid. + The function should generate city map with coordinates. :return: - ","0","OR logical operator","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing create_city_map function","Novice","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " - Negative test cases for is_prime function testing + Testing using medium test data :return: - ","0","Negative test cases for is_prime function testing","Helper methods","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","No kyu helper methods","","" + ","0","test_solution_medium","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing Walker class + Testing starting position property based on negative grids + ","0","Testing Walker class - position property from negative grids","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" " Testing monkey_count function @@ -1422,37 +1456,126 @@ numbers up to and including that number, but excluding zero. :return: - ","0","Testing monkey_count function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Testing monkey_count function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - a or b is negative + Testing 'count_sheeps' function + Hint: Don't forget to check for + bad values like mixed list :return: - ","0","a or b is negative","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" -"","0","Testing epidemic function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing 'count_sheeps' function: mixed list","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" " - Your task is to verify that 'order' function - sorts a given string by following rules: + Testing check_root function with various test inputs - 1. Each word in the string will contain a single number. - This number is the position the word should have in the result. + A function which takes numbers separated by commas + in string format and returns the number which is a + perfect square and the square root of that number. + + If string contains other characters than number or + it has more or less than 4 numbers separated by comma + function returns ""incorrect input"". + + If string contains 4 numbers but not consecutive it + returns ""not consecutive"". + :return: + ","0","Testing check_root function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + Test string with mixed type of chars. + :return: + ","0","String with mixed type of chars","Novice","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +" + 4 is a square number + :return: + ","0","Square numbers (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" +" + Testing Decoding functionality + ","0","Testing Decoding functionality","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Testing 'is_isogram' function + ","0","Testing 'is_isogram' function","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Fundamentals","","" +" + Positive test cases for is_prime function testing + :return: + ","0","Positive test cases for is_prime function testing","Helper methods","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","No kyu helper methods","","" +" + Testing make_readable function - 2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0). + Write a function, which takes a non-negative integer + (seconds) as input and returns the time in a human-readable + format (HH:MM:SS) - 3. If the input string is empty, return an empty string. The words in the - input String will only contain valid consecutive numbers. + HH = hours, padded to 2 digits, range: 00 - 99 + MM = minutes, padded to 2 digits, range: 00 - 59 + SS = seconds, padded to 2 digits, range: 00 - 59 + The maximum time never exceeds 359999 (99:59:59) :return: - ","0","Testing 'order' function","Novice","Mon Aug 26 22:05:28 PDT 2024","passed","Mon Aug 26 22:05:28 PDT 2024","Unit Tests","Fundamentals","","" + ","0","Testing make_readable function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Algorithms","","" " - Testing max_multiple function with - various test data + Testing check_for_factor function. + + This function should test if the + factor is a factor of base. + Return true if it is a factor. :return: - ","0","Testing max_multiple function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Algorithms","","" + ","0","Testing check_for_factor function: positive flow","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" " - Testing Line Safari functionality - Positive test cases - ","0","test_line_positive","Competent","Mon Aug 26 22:05:27 PDT 2024","skipped","Mon Aug 26 22:05:27 PDT 2024","Unit Tests","Algorithms","","" + Test valid_parentheses function with + valid large string + :return: + ","0","Test for valid large string","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" " - Test lists with multiple digits + Testing alphanumeric function with + various test inputs + + The string has the following conditions + to be alphanumeric only + + 1. At least one character ("""" is not valid) + 2. Allowed characters are uppercase or lowercase + latin letters and digits from 0 to 9 + 3. No whitespaces or underscore or special chars + + :return: None + ","0","Testing alphanumeric function","Novice","Sat Nov 30 21:14:59 PST 2024","passed","Sat Nov 30 21:14:59 PST 2024","Unit Tests","Advanced Language Features","","" +" + If the whole array is consecutive then return + null or Nothing or None. + :return: + ","0","Non is expected","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Data Structures","","" +" + A function f(n), should returns the n-th member of sequence. + :return: + ","0","test_sequence","Novice","Sat Nov 30 21:15:00 PST 2024","skipped","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Algorithms","","" +"","0","Testing count_letters_and_digits function","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Fundamentals","","" +" + Testing shark function -> positive + :return: + ","0","Testing shark function (positive)","Beginner","Sat Nov 30 21:15:00 PST 2024","passed","Sat Nov 30 21:15:00 PST 2024","Unit Tests","Math","","" +" + Testing using big test data + :return: + ","0","test_solution_big","Novice","Sat Nov 30 21:14:58 PST 2024","skipped","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + Test that 'remove_char' function + removes the first and + last characters of a string. + :return: + ","0","Testing remove_char function","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" +" + Testing next_bigger function + + You have to test a function that takes a positive integer + number and returns the next bigger number formed by the same digits: + + 12 ==> 21 + 513 ==> 531 + 2017 ==> 2071 + + If no bigger number can be composed using those digits, return -1 + ","0","Testing next_bigger function","Competent","Sat Nov 30 21:14:58 PST 2024","passed","Sat Nov 30 21:14:58 PST 2024","Unit Tests","Algorithms","","" +" + If there are no good ideas, + as is often the case, return 'Fail!'. :return: - ","0","'multiply' function verification: lists with multiple digits","Beginner","Mon Aug 26 22:05:29 PDT 2024","passed","Mon Aug 26 22:05:29 PDT 2024","Unit Tests","Data Structures","","" + ","0","Should return 'Fail!'s","Beginner","Sat Nov 30 21:15:01 PST 2024","passed","Sat Nov 30 21:15:01 PST 2024","Unit Tests","Data Structures","","" diff --git a/allure-report/data/suites.json b/allure-report/data/suites.json index f43b93143ec..d5174983420 100644 --- a/allure-report/data/suites.json +++ b/allure-report/data/suites.json @@ -1 +1 @@ -{"uid":"98d3104e051c652961429bf95fa0b5d6","name":"suites","children":[{"name":"Beginner","children":[{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"test_random","uid":"a83637127d81f7d9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"f80f9bf6821c7c25","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing check_root function","uid":"af6e405f57c78056","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_triangle","uid":"2d65aaadaa20d5c2","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: negative","uid":"f0c848519588d2dc","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'save' function: positive","uid":"4bdc75ea73bb042","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing two_decimal_places function","uid":"611b4f8cf836294a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function","uid":"f0d79dba84dbdf82","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function where head = None","uid":"204a2114486cc2f9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing toJadenCase function (negative)","uid":"3cad1df85b3a49c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"9d90f23892be7ac3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"aee4538f6230f980","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'solution' function","uid":"f09191f837671677","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with one element list","uid":"c1ed75effe27f7a1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with empty list","uid":"c8b2e451486f6a25","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification: lists with multiple digits","uid":"742a65a772f90af2","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification with random list","uid":"af191d67a3f53ad3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing invite_more_women function (negative)","uid":"6c5d99461aa2603","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing invite_more_women function (positive)","uid":"ad12195e4f930686","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing men_from_boys function","uid":"547f04beeb8e83b4","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing row_sum_odd_numbers function","uid":"d837297408a13c1e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'solution' function","uid":"fbbb69f84c1b433f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Two smallest numbers in the start of the list","uid":"3ea60f3a146e3d51","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'vaporcode' function","uid":"9275e1d85a023003","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing first_non_repeated function with various inputs","uid":"c7f51c235702ff2b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing to_alternating_case function","uid":"5653676293d9b683","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_to_array function","uid":"8ded43d0fdf317ac","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_exam function","uid":"b867e5092f796e5b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"9710b9a44c2e3c82","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2fba83a53ac553ac","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"8b31152bd581baeb","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"c462a5b80d49c98b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"a7151a5672bbc2f6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Large lists","uid":"7cef5a6f9a11a927","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"cd298347a8b67e93","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Negative non consecutive number should be returned","uid":"53d75ff9d73daf75","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"fed28c7a9755def6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"6881087bd4c8b374","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"c0e2de6ef36ce602","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"69f91e5f44fcbcaa","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"6a770856a19e186","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"8fac702aa93d2093","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"de314943cf5bdd10","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"3be027c950740ddd","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"cee46a1116cde2e1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"781079de643a720d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"'fix_the_meerkat function function verification","uid":"1152e12f582a6d83","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing remove_char function","uid":"f5da6537a014533","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test that no_space function removes the spaces","uid":"62692a0c3dd76e6c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Test with empty string","uid":"f1acd3007b7873ed","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with regular string","uid":"2cbc31ebfbb61905","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"b843b5b7994550ed","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"c08b2480b8f26290","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BOOLEANS","FUNDAMENTALS"]},{"name":"Testing swap_values function","uid":"ce5b44ba32daaf31","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"f3b283ff21d85aec","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Publish!'","uid":"5329936079819472","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"b32352034ba0a692","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"70e9bff1f7e13160","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"9ab415726f75452ee6a54d789955b31a"}],"uid":"b95f876e1f2b207eb0939a5ec194141f"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate function","uid":"7f4f9e94ec6d4f1e","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"5ef0ca25b0e8e9c5","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"c7106989a12e3c0a","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"fb3ce43e36479ba0","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"c11bd2bbb0f17cd9","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'is_isogram' function","uid":"3bd61bc704b417e2","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"c301f45b01d7d10f","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"cbc7a26721b4acfd","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"7f23a2b3d247ad31","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"73a0aa79bef78acd","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a or b is negative","uid":"a37b17c93d1df521","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"fb032b53923bc0e9","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"1ef1cf7383671b63","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing growing_plant function","uid":"c63189b867db5809","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing max_multiple function","uid":"af5a357d104e13f2","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"a5e3b3442b4ab9dd","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing share_price function","uid":"dba3101c45ee1611","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing number_of_sigfigs function","uid":"a80b9adf611eb67d","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"powers function should return an array of unique numbers","uid":"dfb4af6de633e98","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"46f01e6c3f72b063","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"281344c06cab651e","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"aac9dbbaca38b054","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"a14fdddc74cd287e","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zero_fuel function","uid":"627a7fd2fe38a284","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"49509f8767b19ff3b070ea82fd0cf19d"}],"uid":"1a6a17bcaa86ae91fed50248f9f808b3"},{"name":"Advanced Language Features","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"f1c4cfcd59974ea","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"776a48c95cfacbf7","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"ac42855574891b7aa91cb0cfdbc1ff1b"}],"uid":"8a1f04f4f2bddda13e1db77c9669185c"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing make_class function","uid":"91ff78dc5a767b91","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"5480a468dce69e80a78076b7d4997984"}],"uid":"62dd9c05f110c9974f269ed32d8a9b23"},{"name":"Math","children":[{"name":"Unit Tests","children":[{"name":"Negative numbers","uid":"5cbeef874f8f5965","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"380e12b965b39180","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"f8cfd8001c2b32fd","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"8a85b974bace8b60","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"1c92b73c681a87bf","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a2cb5446a34df86","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"5e8c0121e99e8c0","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"goals function verification","uid":"a2776f2124bd86f4","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b14acb4de8eb0e3a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"34febd97f08d8df7","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"2c2a3e42bb3933c8","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"f5a3f0d4d035c3a4","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"3151ebffdc64c952","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"6af8370630444180","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"de3c176bdacd6cb0","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"6bb1a909958ad3a2","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"564be6d750e08ee1","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"ffc3f48cf5f0bf9f","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"1d2c6842ef40288f","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4588655cceab4699e4f4c41ccec125a1"}],"uid":"f24f43077f75c83f8aa82ea157c16228"},{"name":"Control Flow","children":[{"name":"Unit Tests","children":[{"name":"Testing 'summation' function","uid":"c8a6a3e5884b319c","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Verify that greet function returns the proper message","uid":"3d238edf9c2316ff","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Wolf at the end of the queue","uid":"a3beec2fa9a311c4","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"85d9d1820cce2f7e","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"966dbbb37b9c251e","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"d1cc59bc6b552d774c9e757bac5fad70"}],"uid":"2c20097abac22b773a069b0aaef4ef6b"}],"uid":"55eafda7393c07a0cb8bf5a36609ee53"},{"name":"Proficient","children":[{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing calc function","uid":"d6d06cbc227917e","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"c5034bd103ca2f41152cb0fe51867a6f"}],"uid":"8de418cb873902e5e7c852077467d21a"}],"uid":"34b2a72e4b24c2f51de9d53851293f32"},{"name":"Competent","children":[{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing validate_battlefield function","uid":"36b9e5073b489f49","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"57bbb6ca73efd1b4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_starting_position_from_negatives","uid":"92b17e5074e54ef7","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_negative","uid":"620b2589fb870406","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_line_positive","uid":"f4c5ff18f0370583","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing spiralize function","uid":"164087ecc666d9a0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"test_starting_position_from_positives","uid":"3edaeb1c9114b312","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Encoding functionality","uid":"3fa15071b1bee987","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Decoding functionality","uid":"7e0e76f32ac7ce4e","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"409595d25cc5d60c","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"647dfe698e2a6fdb","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_smaller function","uid":"913459f449cde9ee","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"db7b4c897ddcf1a6","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"6fbcaa806475fb37","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"99f691b62c390084","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"16026a681cee6bae","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"5c64823a2a73f974","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"af3c309699fc2b8b","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing sum_for_list function","uid":"521b14729542d5c4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"acc95e26a53d92ff","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"a921030da8c9a520","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"fb54b35cc540f8c275131a3b0bde9df1"}],"uid":"e15d2622908030fd21f8fc3cdb7350ee"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing 'mix' function","uid":"afdaa298aab7eba8","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"6ce4bba2ff4664c2","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"bc3230f80ad8864d","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"c1f2317d20109e13","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"2d4d361a243697f0ad09ca0b8d7fc47b"}],"uid":"43728ff8805d4ecc81aa1830e24274b8"}],"uid":"b657148eb402076160f4d681d84f0c34"},{"name":"Novice","children":[{"name":"Advanced Language Features","children":[{"name":"Unit Tests","children":[{"name":"Testing alphabet_war function","uid":"aca9d99cb0e5842e","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},{"name":"Testing alphanumeric function","uid":"41a3f66c1c393960","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ecfe278b9d03b10","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c0ff31e127206139","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"29266ed99d46b2a","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing the 'unique_in_order' function","uid":"ab402f3759df06f","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing tickets function","uid":"1c8034b1a6365fc2","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"fd1bbdab14e2e98349209d17f558e911"}],"uid":"13abbe30dd54dd25506d13fe82007e2d"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing done_or_not function","uid":"df3147d31fee6968","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_ips_between","uid":"e5ac2209dd79eabb","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_big","uid":"6827fd264cb4d263","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"ad08cb0fb6eef203","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c322e80c6cd8da83","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"a064a48d91c28f13","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dirReduc function","uid":"d65c16a1b47d468e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing domain_name function","uid":"d8e9539521c4ca00","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing create_city_map function","uid":"e798d2f5cc38e024","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"34569132e9551c33","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing all_fibonacci_numbers function","uid":"5ecd182a341dd7b4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"2ed8dfd7ca5a3d13","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"257a5ad111bd69a7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeating_letter function","uid":"689de206e9df0991","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing flatten function","uid":"84ae1ddd95d9c6d3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"4e7abb728f95d63f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"60f5877935ced5c5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing is_prime function","uid":"2f09ef1a750aec43","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"test_josephus_survivor","uid":"62bf772c3a2aa5d2","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing move_zeros function","uid":"bdcb772653d8aad","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"2c4e292a782b80e3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"e650d3e05f6d005c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"cf2235e5886d8954","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing increment_string function","uid":"a42793a5da57f5c7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'generate_hashtag' function","uid":"e943739be0c776f3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"be5a8376fdcba717","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"d8f6e0603b79e82b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"63cbfe00daba1c69","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"74afb414b6e0cabc","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"e1e70dabc7dad91e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing solve function","uid":"d1585e7c78fd8d06","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"291bd12f30edb56f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in lower case","uid":"79e39b6957e2fa23","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing duplicate_encode function","uid":"a8ada246e9141e4e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with alphabet chars only","uid":"a0cc441d7d4eb4dd","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no alphabet chars","uid":"4260c429366ea20f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with mixed type of chars","uid":"e885db3276511b9a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no duplicate chars","uid":"62e4f6698c2439c","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no duplicate chars","uid":"863d982a547ab48a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"b864bfcb14132f63","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'longest_repetition' function","uid":"bb5e32abc058341d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'solution' function","uid":"324c41918ed3c26a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"900ed6bd99df3d56","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'find_missing_number' function","uid":"f0e71551541527fc","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'numericals' function","uid":"89ceeba296a3ea3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (empty string)","uid":"30cacf1f2fb31f20","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (positive)","uid":"f921307aa8b56caa","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (negative)","uid":"f5b1db39220bbcf9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'group_cities' function","uid":"578c3a6cd3e7e40f","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'pyramid' function","uid":"b98125cb150cd794","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'sort_array' function","uid":"1ef3e1da7f90eb82","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"ecd029e0f98c606","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]}],"uid":"73cc5ec84a1f4867737ab04d0b051a30"}],"uid":"60b9efbaf59dd36076fedea7b4a011d6"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing array_diff function","uid":"f52a489cb0add672","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing 'thirt' function","uid":"66f1b8d1e5ed1dbe","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_table function","uid":"b78c37ec3b0f496f","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"3d3e842542b066f3","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"682a94239c4fcbde","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"b3f7088fed8dedd7","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"7f2ec06c200d3086","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"6b49391a0624f51c","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"66511dda8143933e","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing likes function","uid":"57946e73be805e2a","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"91e3c1348f0cd9d2","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"d17e6b140ea2a07b381194e74a33ce5b"}],"uid":"848d24a9f7bc96b143a85b4c7249d062"},{"name":"Character Encodings","children":[{"name":"Unit Tests","children":[{"name":"Testing binary_to_string function","uid":"5c281d5272513bfd","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"ea2292968a342cdc2f3e82fe12bc3a60"}],"uid":"fa9a202351dae141f823df5882ab8297"},{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"Testing 'letter_count' function","uid":"7ba8a4247f4c6307","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"ccf5a8c46639d0ec","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing string_transformer function","uid":"469371686ca36a1e","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: append","uid":"7f890ca68cdfc481","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"14e29fc6b385d9d8","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"4359475f5ec554bd","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"43c0068fe0a1265e","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a33fb2570aec1823","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"93b3042e12ae0dc2","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"7d1621a20d6f8fe7","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"396df158495e2556","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"4c3877c30e625752","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"285243671a4d56475e0ffa0a97c6cd61"}],"uid":"461e7ff781b427f737fa5139844a1ff0"}],"uid":"7f519f47c947401fdd71874cbd1d477a"},{"name":"Helper methods","children":[{"name":"No kyu helper methods","children":[{"name":"Unit Tests","children":[{"name":"Negative test cases for gen_primes function testing","uid":"5e4b0e05a0862f7e","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"2030ea00b6998f67","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for is_prime function testing","uid":"73d92f8f0c07772d","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"928532982127bba0","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"3c94ec7b23a52506eb03210940ef66ee"}],"uid":"d34e24897b29a91ffebda6086754b740"}],"uid":"ba03885408883f246e0fc1968e84ead3"}]} \ No newline at end of file +{"uid":"98d3104e051c652961429bf95fa0b5d6","name":"suites","children":[{"name":"Beginner","children":[{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"test_random","uid":"badb2c1a8c5e2d2d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_basic","uid":"68fbe283acac1b6a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing check_root function","uid":"cbb9443875889585","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"96938210802b960f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: positive","uid":"f0d7d5d837d1a81d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: negative","uid":"69d8ca152b73c452","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"8db7c8bf0abe07bc","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function","uid":"e0dd8dfaed76aa75","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"e7ac97a954c5e722","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing toJadenCase function (positive)","uid":"ec0c7de9a70a5f5e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (negative)","uid":"e4473b95f40f5c92","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing password function","uid":"49244d740987433","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"5af3592e93b232bc","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"d2af0876e7f45a7f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with empty list","uid":"ae87022eb9b205bd","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"6f178467aa4ed9b7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"555817f2fd5ba68f","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing invite_more_women function (positive)","uid":"4a970025f2147b3a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing invite_more_women function (negative)","uid":"32eaf956310a89b7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing men_from_boys function","uid":"f4e7ccb7c6ccb848","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"95500b18da61d76","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"69f67038b11a4861","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"cd56af2e749c4e8a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Two smallest numbers in the start of the list","uid":"2fa689144ccb2725","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"52f852c4238fea22","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"cb005e45e7b312b5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"23b533c70baf95c9","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing string_to_array function","uid":"7940a8ba615e27f7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing monkey_count function","uid":"5880c730022f01ee","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"b5ba84846c075db5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"4d07449717f6193c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"14c26803c1139e78","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"47e3461a4e252fc1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"a95c24b51d5c9432","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Large lists","uid":"f807c10786110eac","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Negative non consecutive number should be returned","uid":"8a0604fc927a7480","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non is expected","uid":"f4915582d5908ed3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"a492c358ecb2902d","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"5647d5db4078d707","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"564bcc936cf15d1a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (positive)","uid":"5503b0de9149b0f0","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing period_is_late function (negative)","uid":"a1c87b2c2a6c0bb7","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"7250652c2d8bbae5","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"XOR logical operator","uid":"46352cf5111d5c61","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"OR logical operator","uid":"2a6bb93adc2b9500","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"e42b69525abdede6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"fix_the_meerkat function function verification","uid":"afc8e5dacd30bc41","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Test that no_space function removes the spaces","uid":"b4cae88de9afaa55","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing remove_char function","uid":"6d917e3e4d702f23","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Test with regular string","uid":"fef6b9be2b6df65c","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with empty string","uid":"2a3aa78afffa487b","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Test with one char only","uid":"e96aee50481acdd6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing set_alarm function","uid":"c50649c997228fe6","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing swap_values function","uid":"7e7534020c406c41","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"5364303890f7a5a1","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'I smell a series!'","uid":"d518579b8137712e","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"2c379ae83853bb2a","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"9eaae816682ea6e3","parentUid":"9ab415726f75452ee6a54d789955b31a","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]}],"uid":"9ab415726f75452ee6a54d789955b31a"}],"uid":"b95f876e1f2b207eb0939a5ec194141f"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing count_letters_and_digits function","uid":"5488ed1b45d5018a","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing calculate function","uid":"b0395834a1dc7266","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing easy_line function","uid":"5238b22fc20ccda9","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc_combinations_per_row function","uid":"d9d827d0af3ba710","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"87b0b5de93d5cb12","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"ead644ae8ee031c3","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'is_isogram' function","uid":"af16ce1f4d774662","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"3a516b9dc7b53625","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"37fbb0401b01604d","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (negative test case)","uid":"ce6714fc18aff8ec","parentUid":"3940c19a8bd4a1213ce66b3afdab50ef","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"3940c19a8bd4a1213ce66b3afdab50ef"}],"uid":"9603dc083ab4631b8964ede0f578e399"},{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"a or b is negative","uid":"f74116cee1d73fd7","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a an b are positive numbers","uid":"91c1d8a1fc37f84","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a and b are equal","uid":"8146fd50051ac96b","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"25c9ba69d5ac48c6","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"4d64a30c387b7743","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"971c2aa5dd36f62c","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing largestPower function","uid":"218b156daee27f08","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing number_of_sigfigs function","uid":"230fd42f20a11e18","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","ALGORITHMS"]},{"name":"Testing share_price function","uid":"24f0384efd85ae74","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"823dff07664aaa4","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"f06328bb4646abe9","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"690df5b9e2e97d3","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"9b651a3e27842d38","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"ad642268f112be60","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Simple test for empty string.","uid":"78aec59881bd461e","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for invalid parentheses","uid":"f55783c4fa90131e","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for invalid large string","uid":"d0cba34627dad034","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Simple test for valid parentheses","uid":"4990a9f9fb7d9809","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Test for valid large string","uid":"9cc2024d730e5f8a","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"3f3a4afa0166112e","parentUid":"49509f8767b19ff3b070ea82fd0cf19d","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"49509f8767b19ff3b070ea82fd0cf19d"}],"uid":"1a6a17bcaa86ae91fed50248f9f808b3"},{"name":"Advanced Language Features","children":[{"name":"Unit Tests","children":[{"name":"a and b are equal","uid":"cef1ed2aef537de7","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing gap function","uid":"8caf8fe76e46aa0f","parentUid":"ac42855574891b7aa91cb0cfdbc1ff1b","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"ac42855574891b7aa91cb0cfdbc1ff1b"}],"uid":"8a1f04f4f2bddda13e1db77c9669185c"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing make_class function","uid":"a088624abb606e0e","parentUid":"5480a468dce69e80a78076b7d4997984","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]}],"uid":"5480a468dce69e80a78076b7d4997984"}],"uid":"62dd9c05f110c9974f269ed32d8a9b23"},{"name":"Math","children":[{"name":"Unit Tests","children":[{"name":"Square numbers (positive)","uid":"5b36ed636679609b","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative numbers","uid":"33789c02e7e07041","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"eb8f6057b9598daa","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Square numbers (positive)","uid":"c8680b20dd7e19d5","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Non square numbers (negative)","uid":"a1e3818ccb62ed24","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"30779503c72bcec6","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"goals function verification","uid":"5496efe2fd3e353","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b40f27be3da7edd7","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"873ec1972fa36468","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"ffb8e8f4eed50d14","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"a5a7f52be4bf7369","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"a4cb6a94c77f28ce","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"5ac65e8dc17d86a","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification","uid":"456a7345e9aeb905","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"get_size function tests","uid":"1cc5ce778c99d98","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"move function tests","uid":"5814d63d4b392228","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"You are given two angles -> find the 3rd.","uid":"28baf5593cc14310","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"b59318a9c97ef9f1","parentUid":"ceb1390f367eb52b4e56cc18bbbe1bc9","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]}],"uid":"ceb1390f367eb52b4e56cc18bbbe1bc9"}],"uid":"bcaaabdef5a259215a8e2610bb8fdcda"},{"name":"Numbers","children":[{"name":"Unit Tests","children":[{"name":"Testing century function","uid":"2a82791553e70088","parentUid":"4588655cceab4699e4f4c41ccec125a1","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]}],"uid":"4588655cceab4699e4f4c41ccec125a1"}],"uid":"f24f43077f75c83f8aa82ea157c16228"},{"name":"Control Flow","children":[{"name":"Unit Tests","children":[{"name":"Verify that greet function returns the proper message","uid":"6b2ccbd851ec600","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing 'summation' function","uid":"c8c57e21dd6fea81","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Wolf at the end of the queue","uid":"f8789af2e0cead9e","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"9e884f6ea55b7c35","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"e578dac1473f78ec","parentUid":"d1cc59bc6b552d774c9e757bac5fad70","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"d1cc59bc6b552d774c9e757bac5fad70"}],"uid":"2c20097abac22b773a069b0aaef4ef6b"}],"uid":"55eafda7393c07a0cb8bf5a36609ee53"},{"name":"Novice","children":[{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing compute_ranks","uid":"ec1f79d5effe1aa9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"test_ips_between","uid":"43578fd4f74ce5d9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_basic","uid":"6c1e65f294db5f89","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing done_or_not function","uid":"a90239b6ef90f6a6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"test_solution_big","uid":"4df2e31ca734bf47","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_empty","uid":"c62025a79b33eb3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing dir_reduc function","uid":"d49eccd60ce84feb","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_solution_medium","uid":"ec58e61448a9c6a8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing domain_name function","uid":"31ce0fdb81c2daf6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing all_fibonacci_numbers function","uid":"315e825b7f114d5b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"1fb0e4ddfae0bf06","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"506e0ee504d23a05","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"be79a08ed18e426","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"4d53eb58d77047e8","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"test_smallest","uid":"7ea8a8dc382128a4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing flatten function","uid":"c8d9a4d573dbda2b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing make_readable function","uid":"a92222b0b7f4d601","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"f39847014d01db85","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_josephus_survivor","uid":"e08a8a15da9b3ad","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing is_prime function","uid":"8eb80b15a6d6b848","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing move_zeros function","uid":"ac824f903545a6e7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing zeros function","uid":"40b9b78f2d258cf9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"213536a8a5597e91","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing pig_it function","uid":"22bb7ddce4971121","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing increment_string function","uid":"9ba260a0149e6341","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing done_or_not function","uid":"5b5df6c66b23ba75","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"3f2e19b818fd15f5","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"72c2edc2055d0da7","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing valid_parentheses function","uid":"ee5910cfe65a88ee","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"d2acdc5e027859f4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing solve function","uid":"c1393951861e51a9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"293f48722d8450df","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"5bee7e36f6e76857","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"da807d1d651bf07b","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"157d23c0aff9e075","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"String with no duplicate chars","uid":"1d2cfb77eef4360e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"777b1d9b55eb3ae9","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"f5898a8468d0cd4","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"f83b86d7cbc0ffa1","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"aa7d2e5e86b66673","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"3d9d773987a3ac09","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"1137568979e0ed3a","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"d0b6dccad411741e","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"21221b4a48a21055","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"skipped","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'numericals' function","uid":"db9b592f660c3c08","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"8878dccf56d36ba6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"f74a1a4c19be5344","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"469fb46dbe1a31d","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"864ee426bf422b09","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"83ae1189d3669b33","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing the 'group_cities' function","uid":"1c66d03c44b01cf6","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing the 'sort_array' function","uid":"4e3f7ea473e691d3","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing digital_root function","uid":"2571a6d17171a809","parentUid":"73cc5ec84a1f4867737ab04d0b051a30","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]}],"uid":"73cc5ec84a1f4867737ab04d0b051a30"}],"uid":"60b9efbaf59dd36076fedea7b4a011d6"},{"name":"Advanced Language Features","children":[{"name":"Unit Tests","children":[{"name":"Testing alphabet_war function","uid":"2de9285990285353","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","EXPRESSIONS","REGULAR","DECLARATIVE","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing alphanumeric function","uid":"19443f8320b2694c","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"c1326d9a3ad9ddfb","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"52e55a2445119fdd","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"b4c3bd7788c9f57d","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing tickets function","uid":"d20d06b45fb65ddb","parentUid":"fd1bbdab14e2e98349209d17f558e911","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]}],"uid":"fd1bbdab14e2e98349209d17f558e911"}],"uid":"13abbe30dd54dd25506d13fe82007e2d"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing 'thirt' function","uid":"a5961784f4ddfa34","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"80b7e762ad299367","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing to_table function","uid":"ece5bd16ef8bbe52","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing checkchoose function","uid":"c9c9a6a75f3a249f","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"afa4196b56245753","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing epidemic function","uid":"8572ffe92ddcaa11","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"48f19bb58dd1432f","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"984b8a80ce69773d","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"aa0fd3e8d8009a95","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'shortest_job_first(' function","uid":"87b2e8453406c3f","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"b3654581f89b5576","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'parts_sums' function","uid":"902288cde0f2109a","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing the 'valid_braces' function","uid":"e6b67890527d37e6","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"7fd83f8828bfb391","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing likes function","uid":"5ff9cf70b259ca21","parentUid":"d17e6b140ea2a07b381194e74a33ce5b","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]}],"uid":"d17e6b140ea2a07b381194e74a33ce5b"}],"uid":"848d24a9f7bc96b143a85b4c7249d062"},{"name":"Character Encodings","children":[{"name":"Unit Tests","children":[{"name":"Testing binary_to_string function","uid":"1cbe6a610fbdfd6","parentUid":"ea2292968a342cdc2f3e82fe12bc3a60","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]}],"uid":"ea2292968a342cdc2f3e82fe12bc3a60"}],"uid":"fa9a202351dae141f823df5882ab8297"},{"name":"Data Structures","children":[{"name":"Unit Tests","children":[{"name":"Testing 'letter_count' function","uid":"4e3fc5966ad47411","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Find the int that appears an odd number of times","uid":"4cc7d24b84024142","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_transformer function","uid":"101b76d3a18bb4c3","parentUid":"8278133de018fd55049b8c3d6fb1fb9b","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"8278133de018fd55049b8c3d6fb1fb9b"}],"uid":"a65c1fb0b7c793d7770a54732bdf367f"},{"name":"Object-Oriented Programming","children":[{"name":"Unit Tests","children":[{"name":"Testing 'DefaultList' class: extend","uid":"f56ae5fa4f278c43","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: append","uid":"44141b5da145c70a","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"9e6eb35888cc4f59","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: insert","uid":"67535419d885cbd9","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"a6a651d904577cf4","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: remove","uid":"3ff093181cede851","parentUid":"e85316c4a58a99a7b2d10b655966fadd","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]}],"uid":"e85316c4a58a99a7b2d10b655966fadd"}],"uid":"4e0683876d74ae0e8b33f66aea00291f"},{"name":"Classes","children":[{"name":"Unit Tests","children":[{"name":"Testing Potion class","uid":"25eb791ee007f15b","parentUid":"3996859f409a2a626e8107ce3f39bca8","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"3996859f409a2a626e8107ce3f39bca8"}],"uid":"1640ac342113ef879e16fc542289e53e"},{"name":"Games","children":[{"name":"Unit Tests","children":[{"name":"Testing calculate_damage function","uid":"4223e436b2847599","parentUid":"8e3854577e4c723c8d6938eed925487b","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]}],"uid":"8e3854577e4c723c8d6938eed925487b"}],"uid":"0bf1a0bba711cdf6ea71031c57333bd3"},{"name":"Performance","children":[{"name":"Unit Tests","children":[{"name":"Testing odd_row function","uid":"733b2334645f5c42","parentUid":"285243671a4d56475e0ffa0a97c6cd61","status":"passed","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]}],"uid":"285243671a4d56475e0ffa0a97c6cd61"}],"uid":"461e7ff781b427f737fa5139844a1ff0"}],"uid":"7f519f47c947401fdd71874cbd1d477a"},{"name":"Proficient","children":[{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing calc function","uid":"26189d3cfda1b8d1","parentUid":"c5034bd103ca2f41152cb0fe51867a6f","status":"passed","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]}],"uid":"c5034bd103ca2f41152cb0fe51867a6f"}],"uid":"8de418cb873902e5e7c852077467d21a"}],"uid":"34b2a72e4b24c2f51de9d53851293f32"},{"name":"Competent","children":[{"name":"Algorithms","children":[{"name":"Unit Tests","children":[{"name":"Testing validate_battlefield function","uid":"c515ef635fa26df1","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"test_line_negative","uid":"482cc1b462231f44","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Calculator class","uid":"d06d6d8db945d4d7","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_line_positive","uid":"fb676676627eae5f","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Walker class - position property from negative grids","uid":"a81b8ca7a7877717","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"7aa3fbfc8218c54e","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Walker class - position property from positive grids","uid":"eb94d03877c16bb4","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing Encoding functionality","uid":"644c808df55456e9","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Decoding functionality","uid":"ca1eccae180a083e","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing format_duration","uid":"b92f0db6c4ee4ff0","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"f2a1a9d494a0859","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing next_smaller function","uid":"c1f90fc4edd70bea","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_permutations","uid":"5a5d0954bb249b69","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"skipped","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing next_bigger function","uid":"1d49801d4e6b4921","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing solution function","uid":"913fbd5c2da31308","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"43a52f18fb3b8136","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing validSolution","uid":"6c8559b634a76bd8","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing 'solution' function","uid":"8da8c6de16bb179d","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing sum_for_list function","uid":"af3a43fc31649664","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_of_intervals function","uid":"99e95613ed424b35","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"f51b45f6ebc18bdf","parentUid":"fb54b35cc540f8c275131a3b0bde9df1","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]}],"uid":"fb54b35cc540f8c275131a3b0bde9df1"}],"uid":"e15d2622908030fd21f8fc3cdb7350ee"},{"name":"Fundamentals","children":[{"name":"Unit Tests","children":[{"name":"Testing 'mix' function","uid":"f87e2580dd045df5","parentUid":"eb271735af5316f4dc1bcc327764bdce","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]}],"uid":"eb271735af5316f4dc1bcc327764bdce"}],"uid":"6ae6b5e5fed4348123e4c22fbcd084fa"},{"name":"OOP","children":[{"name":"Unit Tests","children":[{"name":"Testing Battle method","uid":"c678c03e12583e98","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"8c4575be21ff0ded","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing Warrior class >>> tom","uid":"d6520bfb9bc036e4","parentUid":"2d4d361a243697f0ad09ca0b8d7fc47b","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]}],"uid":"2d4d361a243697f0ad09ca0b8d7fc47b"}],"uid":"43728ff8805d4ecc81aa1830e24274b8"}],"uid":"b657148eb402076160f4d681d84f0c34"},{"name":"Helper methods","children":[{"name":"No kyu helper methods","children":[{"name":"Unit Tests","children":[{"name":"Negative test cases for is_prime function testing","uid":"ad3e6b6eddb975ef","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for is_prime function testing","uid":"5c460b7e756cd57","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative test cases for gen_primes function testing","uid":"bb8e119491d2ebc3","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Positive test cases for gen_primes function testing","uid":"c245bb8192a35073","parentUid":"3c94ec7b23a52506eb03210940ef66ee","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]}],"uid":"3c94ec7b23a52506eb03210940ef66ee"}],"uid":"d34e24897b29a91ffebda6086754b740"}],"uid":"ba03885408883f246e0fc1968e84ead3"}]} \ No newline at end of file diff --git a/allure-report/data/test-cases/101b76d3a18bb4c3.json b/allure-report/data/test-cases/101b76d3a18bb4c3.json new file mode 100644 index 00000000000..812d4f5dee6 --- /dev/null +++ b/allure-report/data/test-cases/101b76d3a18bb4c3.json @@ -0,0 +1 @@ +{"uid":"101b76d3a18bb4c3","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"description":"\n Testing string_transformer function\n with multiple test data.\n\n Given a string, return a new string that has\n transformed based on the input:\n\n 1. Change case of every character, ie. lower\n case to upper case, upper case to lower case.\n\n 2. Reverse the order of words from the input.\n\n :return:\n ","descriptionHtml":"
Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fab45acdd775eb62","name":"stdout","source":"fab45acdd775eb62.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"My head is at the wrong end!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"40cf8e66ad985f0e","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"1152e12f582a6d83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/115439469142590e.json b/allure-report/data/test-cases/115439469142590e.json new file mode 100644 index 00000000000..d52de72b9b3 --- /dev/null +++ b/allure-report/data/test-cases/115439469142590e.json @@ -0,0 +1 @@ +{"uid":"115439469142590e","name":"a and b are equal","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_equal_numbers","historyId":"2972663ca9fa4b4f0e6ea69060a464d5","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a and b are equal\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea2c55d1a71e4c1b","name":"stdout","source":"ea2c55d1a71e4c1b.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"115f495bb01a1dcf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1186c71e39a023da.json b/allure-report/data/test-cases/1186c71e39a023da.json new file mode 100644 index 00000000000..419bd5fa27b --- /dev/null +++ b/allure-report/data/test-cases/1186c71e39a023da.json @@ -0,0 +1 @@ +{"uid":"1186c71e39a023da","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732764218769,"stop":1732764218769,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1732764218771,"stop":1732764218771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1732764218771,"stop":1732764218771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1732764218771,"stop":1732764218771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1732764218771,"stop":1732764218771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1732764218771,"stop":1732764218771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1732764218772,"stop":1732764218772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1732764218772,"stop":1732764218772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1732764218772,"stop":1732764218772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1732764218772,"stop":1732764218772,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1732764218774,"stop":1732764218774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Aggregations"},{"name":"story","value":"Sum of Intervals"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"INTEGERS"},{"name":"tag","value":"ARITHMETIC"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"AGGREGATIONS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"1191e503f4a01ba8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/119afffc6f9f5da8.json b/allure-report/data/test-cases/119afffc6f9f5da8.json new file mode 100644 index 00000000000..f2b1337ab7a --- /dev/null +++ b/allure-report/data/test-cases/119afffc6f9f5da8.json @@ -0,0 +1 @@ +{"uid":"119afffc6f9f5da8","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c2e67de795c89a5a","name":"stdout","source":"c2e67de795c89a5a.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"119afffc6f9f5da8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/11b930e98296bcb5.json b/allure-report/data/test-cases/11b930e98296bcb5.json new file mode 100644 index 00000000000..d47738feca6 --- /dev/null +++ b/allure-report/data/test-cases/11b930e98296bcb5.json @@ -0,0 +1 @@ +{"uid":"11b930e98296bcb5","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"751c11b33d3f5691","name":"stdout","source":"751c11b33d3f5691.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Range Extraction"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"12da189269ca1ca6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13b14c699e0075d9.json b/allure-report/data/test-cases/13b14c699e0075d9.json new file mode 100644 index 00000000000..3f04ff6797a --- /dev/null +++ b/allure-report/data/test-cases/13b14c699e0075d9.json @@ -0,0 +1 @@ +{"uid":"13b14c699e0075d9","name":"Testing top_3_words function","fullName":"kyu_4.most_frequently_used_words.test_top_3_words.Top3WordsTestCase#test_top_3_words","historyId":"749ee6e9278a75fb77637153b8003619","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193975,"stop":1732428193975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732428193976,"stop":1732428193976,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1732428193977,"stop":1732428193977,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"story","value":"Most frequently used words in a text"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"RANKING"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FILTERING"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"13b14c699e0075d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/13bf02549cf3b6be.json b/allure-report/data/test-cases/13bf02549cf3b6be.json new file mode 100644 index 00000000000..ca8b2b7c9ef --- /dev/null +++ b/allure-report/data/test-cases/13bf02549cf3b6be.json @@ -0,0 +1 @@ +{"uid":"13bf02549cf3b6be","name":"Should return 'I smell a series!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_series","historyId":"fd37424f9957f0d1afe768cce5a8cc08","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c6f68f6f0d4b074f","name":"stdout","source":"c6f68f6f0d4b074f.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"40b6991ee66facde","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"14e29fc6b385d9d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/14fe289b5296dbe2.json b/allure-report/data/test-cases/14fe289b5296dbe2.json new file mode 100644 index 00000000000..f03a88f8def --- /dev/null +++ b/allure-report/data/test-cases/14fe289b5296dbe2.json @@ -0,0 +1 @@ +{"uid":"14fe289b5296dbe2","name":"Wolf at the beginning of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_start","historyId":"dcabd02011959f0337d9098678ad990d","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"description":"\n If the wolf is the closest animal to you,\n return \"Pls go away and stop eating my sheep\".\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an un-existing item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"45fa6f11637998ca","name":"stdout","source":"45fa6f11637998ca.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"1585a2916e07d272.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/158fcdb2f6fefbbc.json b/allure-report/data/test-cases/158fcdb2f6fefbbc.json new file mode 100644 index 00000000000..26639cb319e --- /dev/null +++ b/allure-report/data/test-cases/158fcdb2f6fefbbc.json @@ -0,0 +1 @@ +{"uid":"158fcdb2f6fefbbc","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732764221378,"stop":1732764221378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"story","value":"Testing gen_primes util"},{"name":"suite","value":"No kyu helper methods"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"158fcdb2f6fefbbc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/15b13324091bd06f.json b/allure-report/data/test-cases/15b13324091bd06f.json new file mode 100644 index 00000000000..9644f9440d0 --- /dev/null +++ b/allure-report/data/test-cases/15b13324091bd06f.json @@ -0,0 +1 @@ +{"uid":"15b13324091bd06f","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a22ae5e3f6546093","name":"stdout","source":"a22ae5e3f6546093.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Snail"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ad991ec2a2bdb70","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"16026a681cee6bae.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/160f56b842e7aedc.json b/allure-report/data/test-cases/160f56b842e7aedc.json new file mode 100644 index 00000000000..9df5604c37b --- /dev/null +++ b/allure-report/data/test-cases/160f56b842e7aedc.json @@ -0,0 +1 @@ +{"uid":"160f56b842e7aedc","name":"Testing sum_of_intervals function","fullName":"kyu_4.sum_of_intervals.test_sum_of_intervals.SumOfIntervalsTestCase#test_sum_of_intervals","historyId":"31852768c071e158fda7de0b172143f4","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3770d294f14361b7","name":"stdout","source":"3770d294f14361b7.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"INTEGERS"},{"name":"feature","value":"Aggregations"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"AGGREGATIONS"},{"name":"story","value":"Sum of Intervals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"160f56b842e7aedc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/164087ecc666d9a0.json b/allure-report/data/test-cases/164087ecc666d9a0.json deleted file mode 100644 index fe6feb78a0f..00000000000 --- a/allure-report/data/test-cases/164087ecc666d9a0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"164087ecc666d9a0","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"15675e98e5c4a9b8","name":"stdout","source":"15675e98e5c4a9b8.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"fa56d75fd8c33c3c","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"164087ecc666d9a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/164c80d8543f0b6f.json b/allure-report/data/test-cases/164c80d8543f0b6f.json deleted file mode 100644 index a4a21ac9923..00000000000 --- a/allure-report/data/test-cases/164c80d8543f0b6f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"164c80d8543f0b6f","name":"Testing all_fibonacci_numbers function","fullName":"kyu_5.fibonacci_streaming.test_all_fibonacci_numbers.AllFibonacciNumbersTestCase#test_all_fibonacci_numbers","historyId":"a7b5f0a3a7cd2fe8faed75e5c4a52138","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"description":"\n Testing all_fibonacci_numbers function\n\n You're going to provide a needy programmer a\n utility method that generates an infinite sized,\n sequential IntStream (in Python generator)\n which contains all the numbers in a fibonacci\n sequence.\n\n A fibonacci sequence starts with two 1s.\n Every element afterwards is the sum of\n the two previous elements.\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a05e018d59cd8b23","name":"stdout","source":"a05e018d59cd8b23.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"INTEGERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"17e1393f574a0bd2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/17e173f94ae42aac.json b/allure-report/data/test-cases/17e173f94ae42aac.json new file mode 100644 index 00000000000..2041c3d1b3a --- /dev/null +++ b/allure-report/data/test-cases/17e173f94ae42aac.json @@ -0,0 +1 @@ +{"uid":"17e173f94ae42aac","name":"Testing two_decimal_places function","fullName":"kyu_8.formatting_decimal_places_0.test_two_decimal_places.TwoDecimalPlacesTestCase#test_two_decimal_places","historyId":"e3ba8e7dce83ab9de36ddd0bc268f4f6","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"description":"\n Testing two_decimal_places function\n with various test inputs.\n\n Each number should be formatted that it is\n rounded to two decimal places. You don't\n need to check whether the input is a valid\n number because only valid numbers are used\n in the tests.\n :return:\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f6add51b506494b4","name":"stdout","source":"f6add51b506494b4.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"17e43c85790e0335.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/17e84d8dd3123806.json b/allure-report/data/test-cases/17e84d8dd3123806.json new file mode 100644 index 00000000000..ad461a73210 --- /dev/null +++ b/allure-report/data/test-cases/17e84d8dd3123806.json @@ -0,0 +1 @@ +{"uid":"17e84d8dd3123806","name":"Testing string_to_array function","fullName":"kyu_8.convert_string_to_an_array.test_string_to_array.StringToArrayTestCase#test_string_to_array","historyId":"f51ecfb2c4460f518b2155a78436a09d","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"description":"\n Testing string_to_array function.\n\n A function to split a string and\n convert it into an array of words.\n :return:\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1732764218676,"stop":1732764218676,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Strings Mix"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"196d20a77b3bd50d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/19ea1d35de320e7d.json b/allure-report/data/test-cases/19ea1d35de320e7d.json new file mode 100644 index 00000000000..44cc8267609 --- /dev/null +++ b/allure-report/data/test-cases/19ea1d35de320e7d.json @@ -0,0 +1 @@ +{"uid":"19ea1d35de320e7d","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"69a85253be572104","name":"stdout","source":"69a85253be572104.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"1b90e35542bb0d33.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1bbca055747eb3d5.json b/allure-report/data/test-cases/1bbca055747eb3d5.json new file mode 100644 index 00000000000..110d5eddb11 --- /dev/null +++ b/allure-report/data/test-cases/1bbca055747eb3d5.json @@ -0,0 +1 @@ +{"uid":"1bbca055747eb3d5","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732764219268,"stop":1732764219268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1732764219272,"stop":1732764219272,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Casino chips"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"1bbca055747eb3d5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c1ac4b8936ce5ba.json b/allure-report/data/test-cases/1c1ac4b8936ce5ba.json deleted file mode 100644 index 2ca39456b26..00000000000 --- a/allure-report/data/test-cases/1c1ac4b8936ce5ba.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1c1ac4b8936ce5ba","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e563acaa0f865561","name":"stdout","source":"e563acaa0f865561.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"1c1ac4b8936ce5ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c311c9e8beb5e15.json b/allure-report/data/test-cases/1c311c9e8beb5e15.json new file mode 100644 index 00000000000..ab6a8b3295d --- /dev/null +++ b/allure-report/data/test-cases/1c311c9e8beb5e15.json @@ -0,0 +1 @@ +{"uid":"1c311c9e8beb5e15","name":"Testing permute_a_palindrome (empty string)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_empty_string","historyId":"9f2093620517aae286b85ccc9f40b534","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that a function that given a sequence of strings,\n groups the elements that can be obtained by rotating others,\n ignoring upper or lower cases.\n\n In the event that an element appears more than once in\n the input sequence, only one of them will be taken into\n account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"tag","value":"LISTS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"PUZZLES"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5f01b1bb86ec5e4a","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3}},{"uid":"cab9c25314cf754","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1}},{"uid":"621a25121601fe95","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"3f1d46f60fdb6ff1","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ee07ce647fa212f","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3}},{"uid":"25fd6f6c5cfe2b58","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1}},{"uid":"8655885cb5db7a58","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"578c3a6cd3e7e40f","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"1c66d03c44b01cf6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1c8034b1a6365fc2.json b/allure-report/data/test-cases/1c8034b1a6365fc2.json deleted file mode 100644 index a5c671a1722..00000000000 --- a/allure-report/data/test-cases/1c8034b1a6365fc2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1c8034b1a6365fc2","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"description":"\n Testing tickets function with various test inputs.\n\n The new \"Avengers\" movie has just been released!\n There are a lot of people at the cinema box office\n standing in a huge line. Each of them has a single\n 100, 50 or 25 dollar bill. An \"Avengers\" ticket\n costs 25 dollars.\n\n Vasya is currently working as a clerk.\n He wants to sell a ticket to every single person\n in this line.\n\n Can Vasya sell a ticket to every person and give change\n if he initially has no money and sells the tickets strictly\n in the order people queue?\n\n The function should return YES, if Vasya can sell\n a ticket to every person and give change with the\n bills he has at hand at that moment. Otherwise return NO.\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Character Encodings"},{"name":"tag","value":"ASCII"},{"name":"tag","value":"FORMATS"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"tag","value":"BINARY"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"627ac903c8bfc90f","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0}},{"uid":"cd72a87cc33096c5","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0}},{"uid":"7f106ecb68257734","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"4ed891af5fcb8959","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"67a0bf67db9047ee","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0}},{"uid":"1d2104b5fa1d29b","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0}},{"uid":"2b38fe6b8a5a46","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"1cbe6a610fbdfd6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1cc5ce778c99d98.json b/allure-report/data/test-cases/1cc5ce778c99d98.json new file mode 100644 index 00000000000..546461fb0d3 --- /dev/null +++ b/allure-report/data/test-cases/1cc5ce778c99d98.json @@ -0,0 +1 @@ +{"uid":"1cc5ce778c99d98","name":"get_size function tests","fullName":"kyu_8.surface_area_and_volume_of_box.test_get_size.GetSizeTestCase#test_get_size","historyId":"ecc1f7419b2f77621f5c909f1d0df9a9","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"67250f10970b9ec2","name":"stdout","source":"67250f10970b9ec2.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Century From Year"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e13311d47c82f25c","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"1d2c6842ef40288f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d2cfb77eef4360e.json b/allure-report/data/test-cases/1d2cfb77eef4360e.json new file mode 100644 index 00000000000..8cd43480d2c --- /dev/null +++ b/allure-report/data/test-cases/1d2cfb77eef4360e.json @@ -0,0 +1 @@ +{"uid":"1d2cfb77eef4360e","name":"String with no duplicate chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_none","historyId":"a2426de0b4808429aff451df95bbdc21","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"description":"\n Test string with no duplicate chars.\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7d0a39712ee3eee","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0}},{"uid":"c9b5322357724fe7","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0}},{"uid":"8ebc308a5806000e","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"e97e117a0c1b5372","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5e2354482de170d3","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0}},{"uid":"3e8741eae0b44214","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0}},{"uid":"7b2352a8e3675c67","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"1d49801d4e6b4921.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1d6bdee17d8fe6b6.json b/allure-report/data/test-cases/1d6bdee17d8fe6b6.json new file mode 100644 index 00000000000..91a8bea41dd --- /dev/null +++ b/allure-report/data/test-cases/1d6bdee17d8fe6b6.json @@ -0,0 +1 @@ +{"uid":"1d6bdee17d8fe6b6","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_test","historyId":"eb0582ce0674121869dd4f6fce46e7f3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"77d84c2ff475cafc","name":"stdout","source":"77d84c2ff475cafc.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sort the odd"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b54ad09f549aa423","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"1ef3e1da7f90eb82.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f1607dce833287a.json b/allure-report/data/test-cases/1f1607dce833287a.json deleted file mode 100644 index fa990655516..00000000000 --- a/allure-report/data/test-cases/1f1607dce833287a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1f1607dce833287a","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724733473218,"stop":1724733473889,"duration":671},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f56caa49d4564a64","name":"stdout","source":"f56caa49d4564a64.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Easy Diagonal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"1f1607dce833287a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1f322fed435e4c7b.json b/allure-report/data/test-cases/1f322fed435e4c7b.json new file mode 100644 index 00000000000..b257d3b1a98 --- /dev/null +++ b/allure-report/data/test-cases/1f322fed435e4c7b.json @@ -0,0 +1 @@ +{"uid":"1f322fed435e4c7b","name":"Should return 'Fail!'s","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_fail","historyId":"a12b9599b8bf7b92d2c2e1462a17342d","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"36bee03d6cf0b073","name":"stdout","source":"36bee03d6cf0b073.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"1f92252f389b32f9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fa1afd4ab27e4cb.json b/allure-report/data/test-cases/1fa1afd4ab27e4cb.json new file mode 100644 index 00000000000..d493b1c047a --- /dev/null +++ b/allure-report/data/test-cases/1fa1afd4ab27e4cb.json @@ -0,0 +1 @@ +{"uid":"1fa1afd4ab27e4cb","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194005,"stop":1732428194005,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1732428194006,"stop":1732428194006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1732428194006,"stop":1732428194006,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1732428194007,"stop":1732428194007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194009,"stop":1732428194009,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Range Extraction"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"1fa1afd4ab27e4cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fa9af8d7ed67798.json b/allure-report/data/test-cases/1fa9af8d7ed67798.json deleted file mode 100644 index a6244cfa981..00000000000 --- a/allure-report/data/test-cases/1fa9af8d7ed67798.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"1fa9af8d7ed67798","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1724733473889,"stop":1724733473905,"duration":16},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"32c8f819a3205d1d","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0}},{"uid":"89e4ffe6e2b4858c","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1}},{"uid":"cb74d5229c88c838","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"295480517e9988a7","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"bb0cb59f0e1a4eca","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0}},{"uid":"5cd4eeb8a4b79d6b","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1}},{"uid":"645c6c05562d2f01","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"1fb0e4ddfae0bf06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/1fbf7f076eee2a48.json b/allure-report/data/test-cases/1fbf7f076eee2a48.json new file mode 100644 index 00000000000..a964a57cfb3 --- /dev/null +++ b/allure-report/data/test-cases/1fbf7f076eee2a48.json @@ -0,0 +1 @@ +{"uid":"1fbf7f076eee2a48","name":"Negative non consecutive number should be returned","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_negative","historyId":"f9c1f10fe995fd827dbc67efd6c689cb","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[{"name":"Assert that classes have Bob arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fafd1746b13ebf11","name":"stdout","source":"fafd1746b13ebf11.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Make Class"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Classes"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"1fc6416a9dae71a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2030ea00b6998f67.json b/allure-report/data/test-cases/2030ea00b6998f67.json deleted file mode 100644 index 525b23a7009..00000000000 --- a/allure-report/data/test-cases/2030ea00b6998f67.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2030ea00b6998f67","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b3fc81b6d668011d","name":"stdout","source":"b3fc81b6d668011d.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"bf1274fce77ea3c3","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"2030ea00b6998f67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/204a2114486cc2f9.json b/allure-report/data/test-cases/204a2114486cc2f9.json deleted file mode 100644 index ed2e595f2a9..00000000000 --- a/allure-report/data/test-cases/204a2114486cc2f9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"204a2114486cc2f9","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"description":"\n Testing length function\n where head = None\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ef79b655f296972f","name":"stdout","source":"ef79b655f296972f.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Casino chips"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"20bc61b759bd6ae3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/21221b4a48a21055.json b/allure-report/data/test-cases/21221b4a48a21055.json new file mode 100644 index 00000000000..68ac6feba46 --- /dev/null +++ b/allure-report/data/test-cases/21221b4a48a21055.json @@ -0,0 +1 @@ +{"uid":"21221b4a48a21055","name":"test_sequence","fullName":"kyu_6.no_arithmetic_progressions.test_sequence.SequenceTestCase#test_sequence","historyId":"4f7c4b258ce2dd212abc76d538a956bd","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"description":"\n A function f(n), should returns the n-th member of sequence.\n :return:\n ","descriptionHtml":" A function f(n), should returns the n-th member of sequence.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"No arithmetic progressions"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8bb4333bde7b6f57","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764220219,"stop":1732764220219,"duration":0}},{"uid":"38465b9126105022","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428195535,"stop":1732428195535,"duration":0}},{"uid":"7f8863141fd28835","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"78770f3ff6d80a18","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733473976,"stop":1724733473976,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"2890c501d19b5f47","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764220219,"stop":1732764220219,"duration":0}},{"uid":"b6d0f7b70ff35380","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428195535,"stop":1732428195535,"duration":0}},{"uid":"b72d4e8ad3288d1b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"900ed6bd99df3d56","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"21221b4a48a21055.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/212bbd08068e155a.json b/allure-report/data/test-cases/212bbd08068e155a.json
new file mode 100644
index 00000000000..8896b3d8187
--- /dev/null
+++ b/allure-report/data/test-cases/212bbd08068e155a.json
@@ -0,0 +1 @@
+{"uid":"212bbd08068e155a","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"description":"\n Testing swap_values function\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e11f321ad70e66d6","name":"stdout","source":"e11f321ad70e66d6.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"213fb9c2969dbcfd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2165433d4974d104.json b/allure-report/data/test-cases/2165433d4974d104.json new file mode 100644 index 00000000000..be6ed5dc58d --- /dev/null +++ b/allure-report/data/test-cases/2165433d4974d104.json @@ -0,0 +1 @@ +{"uid":"2165433d4974d104","name":"Testing 'sum_triangular_numbers' with big number as an input","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_big_number","historyId":"e2716f691be2a9d6b5fd30d66b1f784d","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":" Testing using empty test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 108, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"2200ea2b7046c13e.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/224cd2efeafa2904.json b/allure-report/data/test-cases/224cd2efeafa2904.json
deleted file mode 100644
index 37e59649c9d..00000000000
--- a/allure-report/data/test-cases/224cd2efeafa2904.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"224cd2efeafa2904","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"String"},{"name":"tag","value":"PERMUTATIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Permutations"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"231a2a65aa8e32a.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/233e934352e9feff.json b/allure-report/data/test-cases/233e934352e9feff.json
new file mode 100644
index 00000000000..46e794d07b9
--- /dev/null
+++ b/allure-report/data/test-cases/233e934352e9feff.json
@@ -0,0 +1 @@
+{"uid":"233e934352e9feff","name":"Testing row_sum_odd_numbers function","fullName":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers.OddRowTestCase#test_row_sum_odd_numbers","historyId":"b85aee9ae2ee06fc56de8481df862c73","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195989,"stop":1732428195989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195991,"stop":1732428195991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of odd numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"233e934352e9feff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/237d8af0ad05999a.json b/allure-report/data/test-cases/237d8af0ad05999a.json new file mode 100644 index 00000000000..363307834d6 --- /dev/null +++ b/allure-report/data/test-cases/237d8af0ad05999a.json @@ -0,0 +1 @@ +{"uid":"237d8af0ad05999a","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1732428196232,"stop":1732428196232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Greek Sort"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Tuple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"237d8af0ad05999a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/238aa65764e1d222.json b/allure-report/data/test-cases/238aa65764e1d222.json new file mode 100644 index 00000000000..b795091555f --- /dev/null +++ b/allure-report/data/test-cases/238aa65764e1d222.json @@ -0,0 +1 @@ +{"uid":"238aa65764e1d222","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"description":"\n Testing check_root function with various test inputs\n\n A function which takes numbers separated by commas\n in string format and returns the number which is a\n perfect square and the square root of that number.\n\n If string contains other characters than number or\n it has more or less than 4 numbers separated by comma\n function returns \"incorrect input\".\n\n If string contains 4 numbers but not consecutive it\n returns \"not consecutive\".\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"461c8c952ae09079","name":"stdout","source":"461c8c952ae09079.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Sum by Factors"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"23d2f8eb0089d9c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/23d88d3c634a9318.json b/allure-report/data/test-cases/23d88d3c634a9318.json new file mode 100644 index 00000000000..d1117818ac8 --- /dev/null +++ b/allure-report/data/test-cases/23d88d3c634a9318.json @@ -0,0 +1 @@ +{"uid":"23d88d3c634a9318","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"description":"\n And (â§) is the truth-functional\n operator of logical conjunction\n\n The and of a set of operands is true\n if and only if all of its operands are true.\n\n Source:\n https://en.wikipedia.org/wiki/Logical_conjunction\n\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an un-existing item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"599f4bf8dc375f2f","name":"stdout","source":"599f4bf8dc375f2f.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"247e42713d4388e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/249dabf58e93eece.json b/allure-report/data/test-cases/249dabf58e93eece.json new file mode 100644 index 00000000000..4af83978fc2 --- /dev/null +++ b/allure-report/data/test-cases/249dabf58e93eece.json @@ -0,0 +1 @@ +{"uid":"249dabf58e93eece","name":"Testing row_sum_odd_numbers function","fullName":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers.OddRowTestCase#test_row_sum_odd_numbers","historyId":"b85aee9ae2ee06fc56de8481df862c73","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d4e82428a3f7df08","name":"stdout","source":"d4e82428a3f7df08.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"ARITHMETIC"},{"name":"story","value":"Sum of odd numbers"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"249dabf58e93eece.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24b90ea9d401f78e.json b/allure-report/data/test-cases/24b90ea9d401f78e.json new file mode 100644 index 00000000000..69b33b575fe --- /dev/null +++ b/allure-report/data/test-cases/24b90ea9d401f78e.json @@ -0,0 +1 @@ +{"uid":"24b90ea9d401f78e","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Classes"},{"name":"story","value":"Potion Class 101"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"24b90ea9d401f78e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/24f0384efd85ae74.json b/allure-report/data/test-cases/24f0384efd85ae74.json new file mode 100644 index 00000000000..4386865b8f1 --- /dev/null +++ b/allure-report/data/test-cases/24f0384efd85ae74.json @@ -0,0 +1 @@ +{"uid":"24f0384efd85ae74","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732428193949,"stop":1732428193949,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193950,"stop":1732428193950,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1732428193951,"stop":1732428193951,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"24fce2b7549fc46.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/250def6bd45574c1.json b/allure-report/data/test-cases/250def6bd45574c1.json new file mode 100644 index 00000000000..c88d3bad7bf --- /dev/null +++ b/allure-report/data/test-cases/250def6bd45574c1.json @@ -0,0 +1 @@ +{"uid":"250def6bd45574c1","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732764218582,"stop":1732764218582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1732764218583,"stop":1732764218583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732764218583,"stop":1732764218583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732764218583,"stop":1732764218583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732764218583,"stop":1732764218583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732764218583,"stop":1732764218583,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1732764218584,"stop":1732764218584,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"250def6bd45574c1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/256e8daa91edbaa5.json b/allure-report/data/test-cases/256e8daa91edbaa5.json deleted file mode 100644 index d89da6f1486..00000000000 --- a/allure-report/data/test-cases/256e8daa91edbaa5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"256e8daa91edbaa5","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Testing string_transformer function\n with multiple test data.\n\n Given a string, return a new string that has\n transformed based on the input:\n\n 1. Change case of every character, ie. lower\n case to upper case, upper case to lower case.\n\n 2. Reverse the order of words from the input.\n\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests") with\n\n 1) the smallest number you got\n 2) the index i of the digit d you took, i as small as possible\n 3) the index j (as small as possible) where you insert this digit d to have the smallest number.\n\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the smallest"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"eb2c31b2b7e0b335","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"257a5ad111bd69a7.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/258638d82f4f543b.json b/allure-report/data/test-cases/258638d82f4f543b.json
new file mode 100644
index 00000000000..60d5bf7aed0
--- /dev/null
+++ b/allure-report/data/test-cases/258638d82f4f543b.json
@@ -0,0 +1 @@
+{"uid":"258638d82f4f543b","name":"Should return 'I smell a series!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_series","historyId":"fd37424f9957f0d1afe768cce5a8cc08","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Potion Class 101"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Classes"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e427ef86cabe9ddd","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2}},{"uid":"975470b122402791","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0}},{"uid":"24b90ea9d401f78e","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"f0823718dfb5375c","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f5c9e062133dbbbb","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2}},{"uid":"d820d165ec4b4b72","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0}},{"uid":"cdfe495bc85470d2","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"7d1621a20d6f8fe7","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"25eb791ee007f15b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/26189d3cfda1b8d1.json b/allure-report/data/test-cases/26189d3cfda1b8d1.json new file mode 100644 index 00000000000..68e3b9b5e6f --- /dev/null +++ b/allure-report/data/test-cases/26189d3cfda1b8d1.json @@ -0,0 +1 @@ +{"uid":"26189d3cfda1b8d1","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"description":"\n Testing calc class\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc class\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"EXPRESSIONS"},{"name":"epic","value":"2 kyu"},{"name":"parentSuite","value":"Proficient"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"OPERATORS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"PARSING STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fd6070318b36fb6f","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0}},{"uid":"d95f3589be6b0bcb","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0}},{"uid":"61355273b18aad8","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"705df14002b81e6d","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a6d26dfb90ab4062","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0}},{"uid":"c77f51e83226296c","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0}},{"uid":"693c5b2693478689","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"d6d06cbc227917e","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}}]},"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"26189d3cfda1b8d1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2620650c036fa5d9.json b/allure-report/data/test-cases/2620650c036fa5d9.json new file mode 100644 index 00000000000..a0f3b78c73f --- /dev/null +++ b/allure-report/data/test-cases/2620650c036fa5d9.json @@ -0,0 +1 @@ +{"uid":"2620650c036fa5d9","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"description":"\n Testing solution function\n\n If we list all the natural numbers below 10\n that are multiples of 3 or 5, we get 3, 5, 6 and 9.\n The sum of these multiples is 23.\n\n Finish the solution so that it returns the sum of\n all the multiples of 3 or 5 below the number passed in.\n\n Note: If the number is a multiple of both 3 and 5,\n only count it once.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"688ad3759760cab8","name":"stdout","source":"688ad3759760cab8.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Lists"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"LISTS"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"27163d5f2266ba73.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/274cead41a0d037b.json b/allure-report/data/test-cases/274cead41a0d037b.json new file mode 100644 index 00000000000..890911ad990 --- /dev/null +++ b/allure-report/data/test-cases/274cead41a0d037b.json @@ -0,0 +1 @@ +{"uid":"274cead41a0d037b","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"479ed89d4ea66fbb","name":"stdout","source":"479ed89d4ea66fbb.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"2752c76835c96fe1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/27844b15371870f6.json b/allure-report/data/test-cases/27844b15371870f6.json deleted file mode 100644 index 4ec8ad9fecf..00000000000 --- a/allure-report/data/test-cases/27844b15371870f6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"27844b15371870f6","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"description":"\n Testing length function\n where head = None\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":" In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"Josephus Survivor"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"28b8fa13ba65f773.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/28baf5593cc14310.json b/allure-report/data/test-cases/28baf5593cc14310.json
new file mode 100644
index 00000000000..1811a1268e6
--- /dev/null
+++ b/allure-report/data/test-cases/28baf5593cc14310.json
@@ -0,0 +1 @@
+{"uid":"28baf5593cc14310","name":"You are given two angles -> find the 3rd.","fullName":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle.OtherAngleTestCase#test_other_angle","historyId":"6630066bed88b9c8246478bc4b94ac73","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d00e203177644379","name":"stdout","source":"d00e203177644379.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"295480517e9988a7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/297d8e250a3e646f.json b/allure-report/data/test-cases/297d8e250a3e646f.json new file mode 100644 index 00000000000..c18bbc9db13 --- /dev/null +++ b/allure-report/data/test-cases/297d8e250a3e646f.json @@ -0,0 +1 @@ +{"uid":"297d8e250a3e646f","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b3f562db94371de7","name":"stdout","source":"b3f562db94371de7.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"297d8e250a3e646f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2989a8630844f025.json b/allure-report/data/test-cases/2989a8630844f025.json new file mode 100644 index 00000000000..60e825ffea4 --- /dev/null +++ b/allure-report/data/test-cases/2989a8630844f025.json @@ -0,0 +1 @@ +{"uid":"2989a8630844f025","name":"a an b are positive numbers","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_positive_numbers","historyId":"d52901f553e103c17fa73d8148d8b604","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bd3f1d26bd9a423c","name":"stdout","source":"bd3f1d26bd9a423c.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"2993b93df714aac2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/299c2d5af116c0c6.json b/allure-report/data/test-cases/299c2d5af116c0c6.json new file mode 100644 index 00000000000..ad771b8304f --- /dev/null +++ b/allure-report/data/test-cases/299c2d5af116c0c6.json @@ -0,0 +1 @@ +{"uid":"299c2d5af116c0c6","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7bfcd285de663163","name":"stdout","source":"7bfcd285de663163.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Tuple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Greek Sort"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"299c2d5af116c0c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/29dbd6c095321046.json b/allure-report/data/test-cases/29dbd6c095321046.json new file mode 100644 index 00000000000..5217d9d9787 --- /dev/null +++ b/allure-report/data/test-cases/29dbd6c095321046.json @@ -0,0 +1 @@ +{"uid":"29dbd6c095321046","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[{"name":"Assert that classes Bob and Bob have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes Dog and Dog have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 5 and 5 have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes good and good have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 50lb and 50lb have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes brown and brown have equal properties","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1732428195883,"stop":1732428195883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"OOP"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Classes"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Make Class"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"tag","value":"GAMES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},"source":"29dbd6c095321046.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/29ff0a22a55da068.json b/allure-report/data/test-cases/29ff0a22a55da068.json new file mode 100644 index 00000000000..914ba8b9c68 --- /dev/null +++ b/allure-report/data/test-cases/29ff0a22a55da068.json @@ -0,0 +1 @@ +{"uid":"29ff0a22a55da068","name":"Testing toJadenCase function (positive)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_positive","historyId":"7c48f5c6aa887d1bc76d081b028cf7cf","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"DATES/TIME"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Century From Year"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8809fca01a516cec","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0}},{"uid":"3889b494a7c822e","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0}},{"uid":"cfca05e0b975fd2","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"ed7d0b3c14fd80c8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3ead41117d0ad5b6","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0}},{"uid":"c7e963fd1c95dafe","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0}},{"uid":"d3037fd25424c6f3","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"1d2c6842ef40288f","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"2a82791553e70088.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2ae21ed716f07041.json b/allure-report/data/test-cases/2ae21ed716f07041.json new file mode 100644 index 00000000000..2bb9365b128 --- /dev/null +++ b/allure-report/data/test-cases/2ae21ed716f07041.json @@ -0,0 +1 @@ +{"uid":"2ae21ed716f07041","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"description":"\n Testing length function\n where head = None\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"2b0cda84a7f3dae6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2b0e5265fce841a7.json b/allure-report/data/test-cases/2b0e5265fce841a7.json new file mode 100644 index 00000000000..776a0c40043 --- /dev/null +++ b/allure-report/data/test-cases/2b0e5265fce841a7.json @@ -0,0 +1 @@ +{"uid":"2b0e5265fce841a7","name":"String with no duplicate chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_none","historyId":"a2426de0b4808429aff451df95bbdc21","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on positive grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"2b5b6c744b764be6.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/2b9e2e21ff531ae4.json b/allure-report/data/test-cases/2b9e2e21ff531ae4.json
deleted file mode 100644
index dddc138478b..00000000000
--- a/allure-report/data/test-cases/2b9e2e21ff531ae4.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"2b9e2e21ff531ae4","name":"Testing 'sum_triangular_numbers' with big number as an input","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_big_number","historyId":"e2716f691be2a9d6b5fd30d66b1f784d","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65073b7edfec4e6b","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"2c2a3e42bb3933c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2c379ae83853bb2a.json b/allure-report/data/test-cases/2c379ae83853bb2a.json new file mode 100644 index 00000000000..028949779cf --- /dev/null +++ b/allure-report/data/test-cases/2c379ae83853bb2a.json @@ -0,0 +1 @@ +{"uid":"2c379ae83853bb2a","name":"Should return 'Publish!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_publish","historyId":"b4a1fa278aa899a374ebad09960e6cca","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Testing position property based on negative grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"Testing position property based on negative grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732764218576,"stop":1732764218576,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"2cc31ac5154e0ba1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2cf064760bcef1c9.json b/allure-report/data/test-cases/2cf064760bcef1c9.json new file mode 100644 index 00000000000..d4f297e2972 --- /dev/null +++ b/allure-report/data/test-cases/2cf064760bcef1c9.json @@ -0,0 +1 @@ +{"uid":"2cf064760bcef1c9","name":"Testing 'sum_triangular_numbers' with positive numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_positive_numbers","historyId":"135e62f837ca5fe30ddfd2ad875e089b","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"314ae6d54cae55b6","name":"stdout","source":"314ae6d54cae55b6.txt","type":"text/plain","size":1079}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Coloured Triangles"},{"name":"tag","value":"Logic"},{"name":"tag","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"2d65aaadaa20d5c2.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/2d7cf0b0c2f46c3.json b/allure-report/data/test-cases/2d7cf0b0c2f46c3.json
new file mode 100644
index 00000000000..90e903acbff
--- /dev/null
+++ b/allure-report/data/test-cases/2d7cf0b0c2f46c3.json
@@ -0,0 +1 @@
+{"uid":"2d7cf0b0c2f46c3","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an un-existing item and verify the result","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"2d7cf0b0c2f46c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2dbb23fbcd106704.json b/allure-report/data/test-cases/2dbb23fbcd106704.json new file mode 100644 index 00000000000..a4a43ef3dfe --- /dev/null +++ b/allure-report/data/test-cases/2dbb23fbcd106704.json @@ -0,0 +1 @@ +{"uid":"2dbb23fbcd106704","name":"Testing next_smaller function","fullName":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller.NextSmallerTestCase#test_next_smaller","historyId":"9d8cb8adf1764c55348d349698b938ac","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732428193991,"stop":1732428193991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1732428193992,"stop":1732428193992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1732428193993,"stop":1732428193993,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1732428193994,"stop":1732428193994,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"INTEGERS"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"2dbb23fbcd106704.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2de9285990285353.json b/allure-report/data/test-cases/2de9285990285353.json new file mode 100644 index 00000000000..4a8e67dd293 --- /dev/null +++ b/allure-report/data/test-cases/2de9285990285353.json @@ -0,0 +1 @@ +{"uid":"2de9285990285353","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"EXPRESSIONS"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"ADVANCED"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Advanced Language Features"},{"name":"feature","value":"String"},{"name":"tag","value":"FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"PROGRAMMING"},{"name":"tag","value":"LANGUAGE"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cbad1c121fb6a6fb","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0}},{"uid":"61c11f4086f447bf","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0}},{"uid":"5283421c34c2facb","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"eb79826fc1ce02b1","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e91954f86960f5cf","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0}},{"uid":"5d8c14adba840438","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0}},{"uid":"ace382695affabdf","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"tags":["STRINGS","LANGUAGE","EXPRESSIONS","REGULAR","DECLARATIVE","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},"source":"2de9285990285353.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2e552441092e62c5.json b/allure-report/data/test-cases/2e552441092e62c5.json new file mode 100644 index 00000000000..c849d12f82d --- /dev/null +++ b/allure-report/data/test-cases/2e552441092e62c5.json @@ -0,0 +1 @@ +{"uid":"2e552441092e62c5","name":"Testing 'parts_sums' function","fullName":"kyu_6.sums_of_parts.test_solution.PartsSumTestCase#test_parts_sum","historyId":"570c0d220c13fc0fd061240afc68e35d","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7009434379983da3","name":"stdout","source":"7009434379983da3.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fcb7b98557709e7f","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"tags":["ALGORITHMS"]},"source":"2ed8dfd7ca5a3d13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f09ef1a750aec43.json b/allure-report/data/test-cases/2f09ef1a750aec43.json deleted file mode 100644 index 2bb5aef8394..00000000000 --- a/allure-report/data/test-cases/2f09ef1a750aec43.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"2f09ef1a750aec43","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"description":"\n Testing a function that checks if a given number n is a prime\n looping through it and, possibly, expanding the array/list of\n known primes only if/when necessary (ie: as soon as you check\n for a potential prime which is greater than a given threshold\n for each n, stop).\n\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1ae03ec55e1d110","name":"stdout","source":"1ae03ec55e1d110.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Disease Spread"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"2f476988eff12f93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/2f5a6152612f841f.json b/allure-report/data/test-cases/2f5a6152612f841f.json new file mode 100644 index 00000000000..d686f3f0bbf --- /dev/null +++ b/allure-report/data/test-cases/2f5a6152612f841f.json @@ -0,0 +1 @@ +{"uid":"2f5a6152612f841f","name":"Testing length function","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length","historyId":"b71e871d53b429aef63593ea1f41c8bc","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"description":"\n Testing length function\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"af19b50155e57570","name":"stdout","source":"af19b50155e57570.txt","type":"text/plain","size":1079}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Coloured Triangles"},{"name":"tag","value":"Logic"},{"name":"tag","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"2febaffd225102f.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/2ff548416f63af86.json b/allure-report/data/test-cases/2ff548416f63af86.json
new file mode 100644
index 00000000000..40a60b9cf75
--- /dev/null
+++ b/allure-report/data/test-cases/2ff548416f63af86.json
@@ -0,0 +1 @@
+{"uid":"2ff548416f63af86","name":"Testing sum_for_list function","fullName":"kyu_4.sum_by_factors.test_sum_for_list.SumForListTestCase#test_sum_for_list","historyId":"d8ed55046475c7e2ae8edf6bff7b1316","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"cc63349648479638","name":"stdout","source":"cc63349648479638.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Sum by Factors"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"2ff548416f63af86.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/305e207ab9e52150.json b/allure-report/data/test-cases/305e207ab9e52150.json new file mode 100644 index 00000000000..8fcac90d7dd --- /dev/null +++ b/allure-report/data/test-cases/305e207ab9e52150.json @@ -0,0 +1 @@ +{"uid":"305e207ab9e52150","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"PARSING"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"87f281129608ef41","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2}},{"uid":"d4ccdeadb2c9dbf3","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0}},{"uid":"8cb8fb70f937622b","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"115f495bb01a1dcf","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6a3f85e29591c654","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2}},{"uid":"2b89947e3a3ec46d","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0}},{"uid":"627da61e5891aa44","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"d8e9539521c4ca00","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"31ce0fdb81c2daf6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/31e5836e8c9c8975.json b/allure-report/data/test-cases/31e5836e8c9c8975.json new file mode 100644 index 00000000000..a55c8f25a20 --- /dev/null +++ b/allure-report/data/test-cases/31e5836e8c9c8975.json @@ -0,0 +1 @@ +{"uid":"31e5836e8c9c8975","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732764218912,"stop":1732764218912,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Find the safest places in town"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"32c8f819a3205d1d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/32eaf956310a89b7.json b/allure-report/data/test-cases/32eaf956310a89b7.json new file mode 100644 index 00000000000..0c5ca058b06 --- /dev/null +++ b/allure-report/data/test-cases/32eaf956310a89b7.json @@ -0,0 +1 @@ +{"uid":"32eaf956310a89b7","name":"Testing invite_more_women function (negative)","fullName":"kyu_7.simple_fun_152.test_invite_more_women.InviteMoreWomenTestCase#test_invite_more_women_negative","historyId":"439816a19ff5fc7179df296b3e238bad","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that should take a shuffled list of\n unique numbers from 1 to n with one element missing\n (which can be any number including n). Should return\n this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1732428195546,"stop":1732428195546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Number Zoo Patrol"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"33444d7890f0540.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3352f60feb1f9712.json b/allure-report/data/test-cases/3352f60feb1f9712.json new file mode 100644 index 00000000000..26d857e4875 --- /dev/null +++ b/allure-report/data/test-cases/3352f60feb1f9712.json @@ -0,0 +1 @@ +{"uid":"3352f60feb1f9712","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732428194034,"stop":1732428194034,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Strip Comments"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"3352f60feb1f9712.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/335bbd097bcd7f07.json b/allure-report/data/test-cases/335bbd097bcd7f07.json new file mode 100644 index 00000000000..d882f45d3a9 --- /dev/null +++ b/allure-report/data/test-cases/335bbd097bcd7f07.json @@ -0,0 +1 @@ +{"uid":"335bbd097bcd7f07","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"description":"\n Testing a function that checks if a given number n is a prime\n looping through it and, possibly, expanding the array/list of\n known primes only if/when necessary (ie: as soon as you check\n for a potential prime which is greater than a given threshold\n for each n, stop).\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732764218952,"stop":1732764218953,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1732764218953,"stop":1732764218953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732764218953,"stop":1732764218953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732764218953,"stop":1732764218953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732764218953,"stop":1732764219003,"duration":50},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732764219003,"stop":1732764219071,"duration":68},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732764219071,"stop":1732764219098,"duration":27},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1732764219110,"stop":1732764219110,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Integers: Recreation One"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Optimization"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"3376cc456abfb7e3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33789c02e7e07041.json b/allure-report/data/test-cases/33789c02e7e07041.json new file mode 100644 index 00000000000..c57cd4a2355 --- /dev/null +++ b/allure-report/data/test-cases/33789c02e7e07041.json @@ -0,0 +1 @@ +{"uid":"33789c02e7e07041","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732764220449,"stop":1732764220449,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1732764220453,"stop":1732764220453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"tag","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"Strings"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"Logic"},{"name":"story","value":"Coloured Triangles"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a25ac6ac5e284cfbe000111","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"338755bddf5c3394.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/33cbde6b5c940b7b.json b/allure-report/data/test-cases/33cbde6b5c940b7b.json
new file mode 100644
index 00000000000..1a0a57558ce
--- /dev/null
+++ b/allure-report/data/test-cases/33cbde6b5c940b7b.json
@@ -0,0 +1 @@
+{"uid":"33cbde6b5c940b7b","name":"test_triangle","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_triangle","historyId":"be7068cb1056118b9c0776b1d187601d","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"description":"\n Basic test case\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1732428195758,"stop":1732428195758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1732428195762,"stop":1732428195762,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"tag","value":"Logic"},{"name":"suite","value":"Data Structures"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Coloured Triangles"},{"name":"tag","value":"Algorithms"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"Strings"},{"name":"feature","value":"Lists"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a25ac6ac5e284cfbe000111","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"33cbde6b5c940b7b.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/33cec918ed89f21.json b/allure-report/data/test-cases/33cec918ed89f21.json
new file mode 100644
index 00000000000..4a4a9fd4df3
--- /dev/null
+++ b/allure-report/data/test-cases/33cec918ed89f21.json
@@ -0,0 +1 @@
+{"uid":"33cec918ed89f21","name":"Testing zero_fuel function","fullName":"kyu_8.will_you_make_it.test_zero_fuel.ZeroFuelTestCase#test_zero_fuel","historyId":"47e8749fb79b5ff765dc32c3b5efb2a3","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"761ccb0eac4691eb","name":"stdout","source":"761ccb0eac4691eb.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will you make it?"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"33cec918ed89f21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/33fde501ad5f49b7.json b/allure-report/data/test-cases/33fde501ad5f49b7.json new file mode 100644 index 00000000000..705e71c9d96 --- /dev/null +++ b/allure-report/data/test-cases/33fde501ad5f49b7.json @@ -0,0 +1 @@ +{"uid":"33fde501ad5f49b7","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732764220260,"stop":1732764220260,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1732764220262,"stop":1732764220262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"FUNCTIONS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Games"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"33fde501ad5f49b7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34569132e9551c33.json b/allure-report/data/test-cases/34569132e9551c33.json deleted file mode 100644 index c5bcf1704c1..00000000000 --- a/allure-report/data/test-cases/34569132e9551c33.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"34569132e9551c33","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4617a41c1cef3094","name":"stdout","source":"4617a41c1cef3094.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cb14dd2e679669bc","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"tags":["ALGORITHMS"]},"source":"34569132e9551c33.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/34febd97f08d8df7.json b/allure-report/data/test-cases/34febd97f08d8df7.json deleted file mode 100644 index 29786c440b0..00000000000 --- a/allure-report/data/test-cases/34febd97f08d8df7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"34febd97f08d8df7","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"51e59668932e1548","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"34febd97f08d8df7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/353219a042e3862c.json b/allure-report/data/test-cases/353219a042e3862c.json new file mode 100644 index 00000000000..9ef9b1eef10 --- /dev/null +++ b/allure-report/data/test-cases/353219a042e3862c.json @@ -0,0 +1 @@ +{"uid":"353219a042e3862c","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194661,"stop":1732428194662,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194662,"stop":1732428194662,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"353219a042e3862c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35a3e561b98b1660.json b/allure-report/data/test-cases/35a3e561b98b1660.json new file mode 100644 index 00000000000..bf83407d0a9 --- /dev/null +++ b/allure-report/data/test-cases/35a3e561b98b1660.json @@ -0,0 +1 @@ +{"uid":"35a3e561b98b1660","name":"Testing done_or_not function","fullName":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku.DidIFinishedSudokuTestCase#test_done_or_not","historyId":"7c59feaf54bd4089e056f041844e3fe6","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1732764218834,"stop":1732764218834,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"CONTROL FLOW"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"LOOPS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"35a3e561b98b1660.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/35bd830710547eb9.json b/allure-report/data/test-cases/35bd830710547eb9.json new file mode 100644 index 00000000000..94d1ff1153c --- /dev/null +++ b/allure-report/data/test-cases/35bd830710547eb9.json @@ -0,0 +1 @@ +{"uid":"35bd830710547eb9","name":"test_smallest","fullName":"kyu_5.find_the_smallest.test_smallest.FindSmallestTestCase#test_smallest","historyId":"cb77631a44bdd00f9fa7fbe845b21048","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"description":"\n Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see \"Sample Tests\") with\n\n 1) the smallest number you got\n 2) the index i of the digit d you took, i as small as possible\n 3) the index j (as small as possible) where you insert this digit d to have the smallest number.\n\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests") with\n\n 1) the smallest number you got\n 2) the index i of the digit d you took, i as small as possible\n 3) the index j (as small as possible) where you insert this digit d to have the smallest number.\n\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Find the smallest"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"35bd830710547eb9.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/35d53e86a3d51a7b.json b/allure-report/data/test-cases/35d53e86a3d51a7b.json
deleted file mode 100644
index 68a2dcb93c4..00000000000
--- a/allure-report/data/test-cases/35d53e86a3d51a7b.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"35d53e86a3d51a7b","name":"'multiply' function verification: lists with multiple digits","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest","historyId":"6105a97f729c5e36b325cf44492db688","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1732764218611,"stop":1732764218611,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1732764218617,"stop":1732764218617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATES/TIME"},{"name":"story","value":"Human readable duration format"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"36190d8eb76d5fc1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/362d2abd0db10461.json b/allure-report/data/test-cases/362d2abd0db10461.json new file mode 100644 index 00000000000..28b6d109e2b --- /dev/null +++ b/allure-report/data/test-cases/362d2abd0db10461.json @@ -0,0 +1 @@ +{"uid":"362d2abd0db10461","name":"Testing number_of_sigfigs function","fullName":"kyu_7.significant_figures.test_number_of_sigfigs.NumberOfSigFigsTestCase#test_number_of_sigfigs","historyId":"3b2ebb1924dbc4e6a73dc5dda19dd323","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5a9323196c3e301a","name":"stdout","source":"5a9323196c3e301a.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"GAME BOARDS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Battleship field validator"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"79507cba518971f8","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"36b9e5073b489f49.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/36cf4add9af1788b.json b/allure-report/data/test-cases/36cf4add9af1788b.json new file mode 100644 index 00000000000..37c10b93b2e --- /dev/null +++ b/allure-report/data/test-cases/36cf4add9af1788b.json @@ -0,0 +1 @@ +{"uid":"36cf4add9af1788b","name":"Testing 'count_sheeps' function: mixed list","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_mixed_list","historyId":"1b4dd61e36f8ec4ee2f83635d4e16e21","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fa01ea71c168121d","name":"stdout","source":"fa01ea71c168121d.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"3765df1aaa05656f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/378737d914acf19c.json b/allure-report/data/test-cases/378737d914acf19c.json new file mode 100644 index 00000000000..b630faea89d --- /dev/null +++ b/allure-report/data/test-cases/378737d914acf19c.json @@ -0,0 +1 @@ +{"uid":"378737d914acf19c","name":"Testing period_is_late function (positive)","fullName":"kyu_8.is_your_period_late.test_is_your_period_late.PeriodIsLateTestCase#test_period_is_late_positive","historyId":"763475007d09f077c2c251a191291e14","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"description":"\n Positive tests\n :return:\n ","descriptionHtml":" A function f(n), should returns the n-th member of sequence.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"No arithmetic progressions"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"38465b9126105022.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/3855d942abd2cdd4.json b/allure-report/data/test-cases/3855d942abd2cdd4.json
new file mode 100644
index 00000000000..b09160bc925
--- /dev/null
+++ b/allure-report/data/test-cases/3855d942abd2cdd4.json
@@ -0,0 +1 @@
+{"uid":"3855d942abd2cdd4","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"description":"\n Testing 'zeros' program that should calculate the number\n of trailing zeros in a factorial of a given number.\n :return: None\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732428196495,"stop":1732428196495,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732428196505,"stop":1732428196505,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"387fcb0eb682916d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3889b494a7c822e.json b/allure-report/data/test-cases/3889b494a7c822e.json new file mode 100644 index 00000000000..b30ffeec6e3 --- /dev/null +++ b/allure-report/data/test-cases/3889b494a7c822e.json @@ -0,0 +1 @@ +{"uid":"3889b494a7c822e","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732428196100,"stop":1732428196101,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1732428196102,"stop":1732428196102,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Century From Year"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"3889b494a7c822e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/38a864ebd2e42623.json b/allure-report/data/test-cases/38a864ebd2e42623.json new file mode 100644 index 00000000000..f42923e6efa --- /dev/null +++ b/allure-report/data/test-cases/38a864ebd2e42623.json @@ -0,0 +1 @@ +{"uid":"38a864ebd2e42623","name":"All chars are in lower case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_lower","historyId":"124f2add699f3e2269c311afae219c6e","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"78dec26e63ca72b","name":"stdout","source":"78dec26e63ca72b.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"FUNCTIONS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Games"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"abf7d26758417bf9","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"396df158495e2556.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39b35ac8d306cbda.json b/allure-report/data/test-cases/39b35ac8d306cbda.json new file mode 100644 index 00000000000..7d57f8f89e7 --- /dev/null +++ b/allure-report/data/test-cases/39b35ac8d306cbda.json @@ -0,0 +1 @@ +{"uid":"39b35ac8d306cbda","name":"Testing easy_line function exception message","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line_exception","historyId":"97004dd24763a55cdf2b4ee4f115bd44","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"39b35ac8d306cbda.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39d768f6fda8fdf2.json b/allure-report/data/test-cases/39d768f6fda8fdf2.json new file mode 100644 index 00000000000..33c4f08ca44 --- /dev/null +++ b/allure-report/data/test-cases/39d768f6fda8fdf2.json @@ -0,0 +1 @@ +{"uid":"39d768f6fda8fdf2","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"39d768f6fda8fdf2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39dc8cd28592a068.json b/allure-report/data/test-cases/39dc8cd28592a068.json new file mode 100644 index 00000000000..2c328b851e8 --- /dev/null +++ b/allure-report/data/test-cases/39dc8cd28592a068.json @@ -0,0 +1 @@ +{"uid":"39dc8cd28592a068","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1732428194291,"stop":1732428194291,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194292,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732428194292,"stop":1732428194324,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732428194324,"stop":1732428194391,"duration":67},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1732428194391,"stop":1732428194424,"duration":33},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1732428194434,"stop":1732428194434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Integers: Recreation One"},{"name":"tag","value":"OPTIMIZATION"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Optimization"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"39dc8cd28592a068.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39e365f7b1aa879c.json b/allure-report/data/test-cases/39e365f7b1aa879c.json deleted file mode 100644 index 64189a8d3a7..00000000000 --- a/allure-report/data/test-cases/39e365f7b1aa879c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"39e365f7b1aa879c","name":"Testing binary_to_string function","fullName":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string.SequenceTestCase#test_binary_to_string","historyId":"5e3d4a7b89a7ecee6b57c2383b63527b","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"66ad4b11c0086ef7","name":"stdout","source":"66ad4b11c0086ef7.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ASCII"},{"name":"suite","value":"Character Encodings"},{"name":"feature","value":"String"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"BINARY"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"39e365f7b1aa879c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/39eb5e3cc2f12413.json b/allure-report/data/test-cases/39eb5e3cc2f12413.json new file mode 100644 index 00000000000..bda631d77fa --- /dev/null +++ b/allure-report/data/test-cases/39eb5e3cc2f12413.json @@ -0,0 +1 @@ +{"uid":"39eb5e3cc2f12413","name":"Find the int that appears an odd number of times","fullName":"kyu_6.find_the_odd_int.test_find_the_odd_int.FindTheOddIntTestCase#test_something","historyId":"0f9fe14df4043e3026ded68af344e3f2","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Greek Sort"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Tuple"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"caa8571433eea386","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1}},{"uid":"237d8af0ad05999a","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0}},{"uid":"adba958b88eb7661","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"299c2d5af116c0c6","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d0246537274067fb","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1}},{"uid":"a4849e99633e4676","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0}},{"uid":"327fbdea3443aca5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"c301f45b01d7d10f","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"3a516b9dc7b53625.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a88934bc640802f.json b/allure-report/data/test-cases/3a88934bc640802f.json new file mode 100644 index 00000000000..638d22e1271 --- /dev/null +++ b/allure-report/data/test-cases/3a88934bc640802f.json @@ -0,0 +1 @@ +{"uid":"3a88934bc640802f","name":"Testing create_city_map function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_create_city_map","historyId":"e437e22193ec7315819824ea1255ab3f","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732764218912,"stop":1732764218912,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Find the safest places in town"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"3a88934bc640802f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3a99d84c035d8b08.json b/allure-report/data/test-cases/3a99d84c035d8b08.json deleted file mode 100644 index 70df012835d..00000000000 --- a/allure-report/data/test-cases/3a99d84c035d8b08.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3a99d84c035d8b08","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Testing Walker class\n Testing starting position property based on negative grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 89, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"3bcfd32a26f68acf.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/3bd61bc704b417e2.json b/allure-report/data/test-cases/3bd61bc704b417e2.json
deleted file mode 100644
index 7e9bfb32b85..00000000000
--- a/allure-report/data/test-cases/3bd61bc704b417e2.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"3bd61bc704b417e2","name":"Testing 'is_isogram' function","fullName":"kyu_7.isograms.test_is_isogram.IsIsogramTestCase#test_is_isogram","historyId":"6b98c62ee1b1f8e766b65263444ad2e5","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isogram and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string aba and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string moOse and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a0b2ebd9f3514d62","name":"stdout","source":"a0b2ebd9f3514d62.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Isograms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fe9e7cd98fc040fc","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"3bd61bc704b417e2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3bdd18878d95b69a.json b/allure-report/data/test-cases/3bdd18878d95b69a.json new file mode 100644 index 00000000000..37d4deae857 --- /dev/null +++ b/allure-report/data/test-cases/3bdd18878d95b69a.json @@ -0,0 +1 @@ +{"uid":"3bdd18878d95b69a","name":"a or b is negative","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_negative_numbers","historyId":"2889ca714f21625b11b311b780ead719","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9fc84a1435124a1a","name":"stdout","source":"9fc84a1435124a1a.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Factorial"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Color Choice"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf2907457d950935","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"3d3e842542b066f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d6d6f8c83d1b77.json b/allure-report/data/test-cases/3d6d6f8c83d1b77.json new file mode 100644 index 00000000000..2a073c55c2a --- /dev/null +++ b/allure-report/data/test-cases/3d6d6f8c83d1b77.json @@ -0,0 +1 @@ +{"uid":"3d6d6f8c83d1b77","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"78ccb02d90c15e25","name":"stdout","source":"78ccb02d90c15e25.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"3d6d6f8c83d1b77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3d9d773987a3ac09.json b/allure-report/data/test-cases/3d9d773987a3ac09.json new file mode 100644 index 00000000000..1d7efd7b918 --- /dev/null +++ b/allure-report/data/test-cases/3d9d773987a3ac09.json @@ -0,0 +1 @@ +{"uid":"3d9d773987a3ac09","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"95fe30b3b4a958d6","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0}},{"uid":"cab8fd48239210db","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0}},{"uid":"d579d28da21d0458","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"e1fc0b63790bda69","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1c3655d4a978bd79","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0}},{"uid":"87dc5713a007f1d7","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0}},{"uid":"d9458c8615b9e985","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"3d9d773987a3ac09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e075566662ada8b.json b/allure-report/data/test-cases/3e075566662ada8b.json deleted file mode 100644 index 452e0809837..00000000000 --- a/allure-report/data/test-cases/3e075566662ada8b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3e075566662ada8b","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"be12a7ae2303d05","name":"stdout","source":"be12a7ae2303d05.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Tuple"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Greek Sort"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"3e075566662ada8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e0c67e156a2779f.json b/allure-report/data/test-cases/3e0c67e156a2779f.json new file mode 100644 index 00000000000..b0000258a58 --- /dev/null +++ b/allure-report/data/test-cases/3e0c67e156a2779f.json @@ -0,0 +1 @@ +{"uid":"3e0c67e156a2779f","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"description":"\n Testing 'zeros' program that should calculate the number\n of trailing zeros in a factorial of a given number.\n :return: None\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Count IP Addresses"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"3e7b87e8229dd1a3.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/3e7bb737d50c6ad2.json b/allure-report/data/test-cases/3e7bb737d50c6ad2.json
new file mode 100644
index 00000000000..474ad6a98ef
--- /dev/null
+++ b/allure-report/data/test-cases/3e7bb737d50c6ad2.json
@@ -0,0 +1 @@
+{"uid":"3e7bb737d50c6ad2","name":"Testing to_table function","fullName":"kyu_6.array_to_html_table.test_list_to_html_table.ArrayToTableTestCase#test_array_to_table_function","historyId":"d7b951f3d87d7ec30599f08ae5567eb7","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219250,"stop":1732764219250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219251,"stop":1732764219251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1732764219252,"stop":1732764219252,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Array to HTML table"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"3e7bb737d50c6ad2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3e8030135d08e5ec.json b/allure-report/data/test-cases/3e8030135d08e5ec.json new file mode 100644 index 00000000000..973afa54946 --- /dev/null +++ b/allure-report/data/test-cases/3e8030135d08e5ec.json @@ -0,0 +1 @@ +{"uid":"3e8030135d08e5ec","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"description":"\n Test an algorithm that takes an array and moves all of the\n zeros to the end, preserving the order of the other elements.\n :return:\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on positive grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2b5b6c744b764be6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472327,"stop":1724733472327,"duration":0}}],"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"3edaeb1c9114b312.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/3f1d46f60fdb6ff1.json b/allure-report/data/test-cases/3f1d46f60fdb6ff1.json
new file mode 100644
index 00000000000..81ab84ff04f
--- /dev/null
+++ b/allure-report/data/test-cases/3f1d46f60fdb6ff1.json
@@ -0,0 +1 @@
+{"uid":"3f1d46f60fdb6ff1","name":"Testing the 'group_cities' function","fullName":"kyu_6.rotate_the_letters_of_each_element.test_group_cities.GroupCitiesTestCase#test_group_cities","historyId":"0b146f7fbac52b042804286da8716f6b","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"788d307008b11df5","name":"stdout","source":"788d307008b11df5.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Lists"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"LISTS"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"3f1d46f60fdb6ff1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f2e19b818fd15f5.json b/allure-report/data/test-cases/3f2e19b818fd15f5.json new file mode 100644 index 00000000000..e7b4dfedffa --- /dev/null +++ b/allure-report/data/test-cases/3f2e19b818fd15f5.json @@ -0,0 +1 @@ +{"uid":"3f2e19b818fd15f5","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Will you make it?"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fbd2d46d837906e7","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0}},{"uid":"a9aa7cc6bd5c34be","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2}},{"uid":"33cec918ed89f21","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"d20f10e7196a7103","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7c6af0e0a129f035","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0}},{"uid":"b2705032891531e8","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2}},{"uid":"afae2f3faef55f2b","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"627a7fd2fe38a284","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"3f3a4afa0166112e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f5cda838e1e2c35.json b/allure-report/data/test-cases/3f5cda838e1e2c35.json deleted file mode 100644 index 3814a78195c..00000000000 --- a/allure-report/data/test-cases/3f5cda838e1e2c35.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"3f5cda838e1e2c35","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1724733472421,"stop":1724733472437,"duration":16},"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"38a17c1a51c46902","name":"stdout","source":"38a17c1a51c46902.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Strip Comments"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"3f5cda838e1e2c35.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3f9c404f9b9586bb.json b/allure-report/data/test-cases/3f9c404f9b9586bb.json new file mode 100644 index 00000000000..f986d5247ac --- /dev/null +++ b/allure-report/data/test-cases/3f9c404f9b9586bb.json @@ -0,0 +1 @@ +{"uid":"3f9c404f9b9586bb","name":"Testing 'count_sheeps' function: bad input","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_bad_input","historyId":"4837bd231004cf7ec289887c52c12796","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like null/undefined\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b2f6f360d1ace914","name":"stdout","source":"b2f6f360d1ace914.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bd89dc29359aa359","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"3fa15071b1bee987.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fc024845e1d1c6.json b/allure-report/data/test-cases/3fc024845e1d1c6.json new file mode 100644 index 00000000000..891917d5c12 --- /dev/null +++ b/allure-report/data/test-cases/3fc024845e1d1c6.json @@ -0,0 +1 @@ +{"uid":"3fc024845e1d1c6","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1a54a6c3a38e3980","name":"stdout","source":"1a54a6c3a38e3980.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"3fc024845e1d1c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/3fd5a8d15bcf78fb.json b/allure-report/data/test-cases/3fd5a8d15bcf78fb.json new file mode 100644 index 00000000000..ab47daaf4c4 --- /dev/null +++ b/allure-report/data/test-cases/3fd5a8d15bcf78fb.json @@ -0,0 +1 @@ +{"uid":"3fd5a8d15bcf78fb","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"description":"\n Test the function called that takes a string of parentheses,\n and determines if the order of the parentheses is valid.\n The function should return true if the string is valid,\n and false if it's invalid.\n\n Examples\n\n \"()\" => true\n \")(()))\" => false\n \"(\" => false\n \"(())((()())())\" => true\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c8141b2abd713c90","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1}},{"uid":"a712aa917a11c1d8","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1}},{"uid":"653d6409b929d554","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"a6eaf13968162fc7","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c0a4502fedd41667","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1}},{"uid":"239a317b6e090fd8","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1}},{"uid":"51a9aec46de8d878","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"43c0068fe0a1265e","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"3ff093181cede851.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40205ec1b133a2fd.json b/allure-report/data/test-cases/40205ec1b133a2fd.json new file mode 100644 index 00000000000..0f0483ab614 --- /dev/null +++ b/allure-report/data/test-cases/40205ec1b133a2fd.json @@ -0,0 +1 @@ +{"uid":"40205ec1b133a2fd","name":"Testing is_prime function","fullName":"kyu_5.master_your_primes_sieve_with_memoization.test_primes.PrimesTestCase#test_primes","historyId":"1051a395d8289668fbb59ee9de3c3a4f","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"description":"\n Testing a function that checks if a given number n is a prime\n looping through it and, possibly, expanding the array/list of\n known primes only if/when necessary (ie: as soon as you check\n for a potential prime which is greater than a given threshold\n for each n, stop).\n\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ac454cba7b8ef897","name":"stdout","source":"ac454cba7b8ef897.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing is_prime util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"405571045d735c93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40605a6b825041b.json b/allure-report/data/test-cases/40605a6b825041b.json new file mode 100644 index 00000000000..b1930c6bd58 --- /dev/null +++ b/allure-report/data/test-cases/40605a6b825041b.json @@ -0,0 +1 @@ +{"uid":"40605a6b825041b","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6f68f7e9f588442e","name":"stdout","source":"6f68f7e9f588442e.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Disease Spread"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"4092d3473f63825.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/409595d25cc5d60c.json b/allure-report/data/test-cases/409595d25cc5d60c.json deleted file mode 100644 index 722c3db5c45..00000000000 --- a/allure-report/data/test-cases/409595d25cc5d60c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"409595d25cc5d60c","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2ec0e0654514a566","name":"stdout","source":"2ec0e0654514a566.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Human readable duration format"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f53adfade05c52d","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"409595d25cc5d60c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4098e50c368546e.json b/allure-report/data/test-cases/4098e50c368546e.json new file mode 100644 index 00000000000..2cbf17cab34 --- /dev/null +++ b/allure-report/data/test-cases/4098e50c368546e.json @@ -0,0 +1 @@ +{"uid":"4098e50c368546e","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"19fe4b4b294825d2","name":"stdout","source":"19fe4b4b294825d2.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"4098e50c368546e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40b6991ee66facde.json b/allure-report/data/test-cases/40b6991ee66facde.json deleted file mode 100644 index c2cd572a4b1..00000000000 --- a/allure-report/data/test-cases/40b6991ee66facde.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"40b6991ee66facde","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence types,\n the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bf32cb10b99852f","name":"stdout","source":"bf32cb10b99852f.txt","type":"text/plain","size":371}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"40b6991ee66facde.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40b9b78f2d258cf9.json b/allure-report/data/test-cases/40b9b78f2d258cf9.json new file mode 100644 index 00000000000..a3f2d388a60 --- /dev/null +++ b/allure-report/data/test-cases/40b9b78f2d258cf9.json @@ -0,0 +1 @@ +{"uid":"40b9b78f2d258cf9","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"description":"\n Testing 'zeros' program that should calculate the number\n of trailing zeros in a factorial of a given number.\n :return: None\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9e259e1fbcfa5f37","name":"stdout","source":"9e259e1fbcfa5f37.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"My head is at the wrong end!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"40cf8e66ad985f0e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/40fa5a64adc09d6a.json b/allure-report/data/test-cases/40fa5a64adc09d6a.json new file mode 100644 index 00000000000..7fbe67836fa --- /dev/null +++ b/allure-report/data/test-cases/40fa5a64adc09d6a.json @@ -0,0 +1 @@ +{"uid":"40fa5a64adc09d6a","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732764220480,"stop":1732764220480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"418db164c4b04ca4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/41a0b3fc08086e96.json b/allure-report/data/test-cases/41a0b3fc08086e96.json new file mode 100644 index 00000000000..625cab2f1c2 --- /dev/null +++ b/allure-report/data/test-cases/41a0b3fc08086e96.json @@ -0,0 +1 @@ +{"uid":"41a0b3fc08086e96","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"description":"\n Testing check_root function with various test inputs\n\n A function which takes numbers separated by commas\n in string format and returns the number which is a\n perfect square and the square root of that number.\n\n If string contains other characters than number or\n it has more or less than 4 numbers separated by comma\n function returns \"incorrect input\".\n\n If string contains 4 numbers but not consecutive it\n returns \"not consecutive\".\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"FUNCTIONS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Games"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"33fde501ad5f49b7","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0}},{"uid":"d8938caa254e2720","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0}},{"uid":"94470fc1dd0d3d27","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"a65eaf9a40469196","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d0931e78c129f8d8","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0}},{"uid":"f91e38b8c375d31c","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0}},{"uid":"90a24ba96aea3cfc","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"396df158495e2556","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"4223e436b2847599.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4260c429366ea20f.json b/allure-report/data/test-cases/4260c429366ea20f.json deleted file mode 100644 index 57c363ffed9..00000000000 --- a/allure-report/data/test-cases/4260c429366ea20f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4260c429366ea20f","name":"String with no alphabet chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_no_alpha","historyId":"eb9123a4aa86a26d4fdbf67e2370745f","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":" Testing using big test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 70, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"427e4e0e38cec3a1.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/42d91b41703125e1.json b/allure-report/data/test-cases/42d91b41703125e1.json
deleted file mode 100644
index 51ce2d665d2..00000000000
--- a/allure-report/data/test-cases/42d91b41703125e1.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"42d91b41703125e1","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"42d91b41703125e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/42eeca3ee9327f4d.json b/allure-report/data/test-cases/42eeca3ee9327f4d.json new file mode 100644 index 00000000000..30c28f2b02f --- /dev/null +++ b/allure-report/data/test-cases/42eeca3ee9327f4d.json @@ -0,0 +1 @@ +{"uid":"42eeca3ee9327f4d","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"description":"\n In this kata, you must create a digital root function.\n\n A digital root is the recursive sum of all the digits\n in a number. Given n, take the sum of the digits of n.\n If that value has more than one digit, continue reducing\n in this way until a single-digit number is produced. This\n is only applicable to the natural numbers.\n :return:\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PARSING"},{"name":"story","value":"Count IP Addresses"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4803d92c50fef81a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218824,"stop":1732764218824,"duration":0}},{"uid":"73b957e217c05b3b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194170,"stop":1732428194170,"duration":0}},{"uid":"a7585b25b34695fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"ac366a2ecd02d5dd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"93b00a3d2e7b92c1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218824,"stop":1732764218824,"duration":0}},{"uid":"e5b1f301926fe23","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194170,"stop":1732428194170,"duration":0}},{"uid":"1dee8c06fd165199","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"e5ac2209dd79eabb","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"43578fd4f74ce5d9.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/4359475f5ec554bd.json b/allure-report/data/test-cases/4359475f5ec554bd.json
deleted file mode 100644
index b02dffb8ae5..00000000000
--- a/allure-report/data/test-cases/4359475f5ec554bd.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"4359475f5ec554bd","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"985fda141a79d4a4","name":"stdout","source":"985fda141a79d4a4.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c3671be37bb5a0b6","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"4359475f5ec554bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4391e2c86d08e20.json b/allure-report/data/test-cases/4391e2c86d08e20.json new file mode 100644 index 00000000000..21745c4f0e2 --- /dev/null +++ b/allure-report/data/test-cases/4391e2c86d08e20.json @@ -0,0 +1 @@ +{"uid":"4391e2c86d08e20","name":"String with alphabet chars only","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_alpha_only","historyId":"f1e3ad74179a106b1d5dc35a6ffe21fa","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"description":"\n Test string with alphabet chars only.\n :return:\n ","descriptionHtml":" Testing using empty test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 108, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"4397ca89d4873d0b.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/43a52f18fb3b8136.json b/allure-report/data/test-cases/43a52f18fb3b8136.json
new file mode 100644
index 00000000000..888c4a39933
--- /dev/null
+++ b/allure-report/data/test-cases/43a52f18fb3b8136.json
@@ -0,0 +1 @@
+{"uid":"43a52f18fb3b8136","name":"Testing 'snail' function","fullName":"kyu_4.snail.test_snail.SnailTestCase#test_snail","historyId":"464e445546d6c625c166d17d836fe45c","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Snail"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Competent"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"824bfc7518105d49","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0}},{"uid":"b91b3028c146d7df","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0}},{"uid":"474912065ebca71","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"903c4d3d57375ecf","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e7035dc3ef8d99c0","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0}},{"uid":"461527a27e50c04a","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0}},{"uid":"95ddc175910ea52","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"16026a681cee6bae","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}}]},"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"43a52f18fb3b8136.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43ae83fa91833c8.json b/allure-report/data/test-cases/43ae83fa91833c8.json new file mode 100644 index 00000000000..4ad09c9a792 --- /dev/null +++ b/allure-report/data/test-cases/43ae83fa91833c8.json @@ -0,0 +1 @@ +{"uid":"43ae83fa91833c8","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_compute_ranks","historyId":"cf898711b7f774f53cf0bc1d40cbb323","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"description":"\n Test the compute_ranks function that organizes a sports\n league in a round-robin-system. Each team meets all other teams.\n In your league a win gives a team 2 points, a draw gives\n both teams 1 point. After some games you have to compute\n the order of the teams in your league. You use the following\n criteria to arrange the teams:\n 1. Points.\n 2. Scoring differential (the difference between goals\n scored and those conceded).\n 3. Goals scored.\n :return:\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ebf0cbf302079de1","name":"stdout","source":"ebf0cbf302079de1.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b3ab40391b5da28d","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"43c0068fe0a1265e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/43e580c8ccbc2ae0.json b/allure-report/data/test-cases/43e580c8ccbc2ae0.json new file mode 100644 index 00000000000..cf0d6dd49d8 --- /dev/null +++ b/allure-report/data/test-cases/43e580c8ccbc2ae0.json @@ -0,0 +1 @@ +{"uid":"43e580c8ccbc2ae0","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"description":"\n For this exercise you will create a global flatten method.\n The method takes in any number of arguments and flattens\n them into a single array. If any of the arguments passed in\n are an array then the individual objects within the array\n will be flattened so that they exist at the same level as\n the other arguments. Any nested arrays, no matter how deep,\n should be flattened into the single array result.\n\n The following are examples of how this function would be\n used and what the expected results would be:\n\n flatten(1, [2, 3], 4, 5, [6, [7]]) # returns [1, 2, 3, 4, 5, 6, 7]\n flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns ['a', 'b', 2, 3, None, 4, 'c']\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7fae1c49f318568","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0}},{"uid":"8c0ab77873b28b8f","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0}},{"uid":"2752c76835c96fe1","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"895846e60323f8ba","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a78b9243c26a61bf","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0}},{"uid":"2655a1e6934b1850","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0}},{"uid":"b5a45493f51c1d67","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"7f890ca68cdfc481","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"44141b5da145c70a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/44221036fb99a571.json b/allure-report/data/test-cases/44221036fb99a571.json new file mode 100644 index 00000000000..39feba326ec --- /dev/null +++ b/allure-report/data/test-cases/44221036fb99a571.json @@ -0,0 +1 @@ +{"uid":"44221036fb99a571","name":"Wolf at the end of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_end","historyId":"e15f1973b9fdb38f6fac61e3b46f93cc","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"description":"\n If the wolf is not the closest animal to you,\n return \"Oi! Sheep number N! You are about to be eaten by a wolf!\"\n where N is the sheep's position in the queue.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d1cc8240eecf71ad","name":"stdout","source":"d1cc8240eecf71ad.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"451dd55d479da390.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/453e6c562bbae4f7.json b/allure-report/data/test-cases/453e6c562bbae4f7.json new file mode 100644 index 00000000000..c15fb91f307 --- /dev/null +++ b/allure-report/data/test-cases/453e6c562bbae4f7.json @@ -0,0 +1 @@ +{"uid":"453e6c562bbae4f7","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"description":"\n Testing Line Safari functionality\n Positive test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"453e6c562bbae4f7.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/456a7345e9aeb905.json b/allure-report/data/test-cases/456a7345e9aeb905.json
new file mode 100644
index 00000000000..a3802f8ced7
--- /dev/null
+++ b/allure-report/data/test-cases/456a7345e9aeb905.json
@@ -0,0 +1 @@
+{"uid":"456a7345e9aeb905","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"suite","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Potion Class 101"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"46081367fb92978f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/46352cf5111d5c61.json b/allure-report/data/test-cases/46352cf5111d5c61.json new file mode 100644 index 00000000000..56021e5795f --- /dev/null +++ b/allure-report/data/test-cases/46352cf5111d5c61.json @@ -0,0 +1 @@ +{"uid":"46352cf5111d5c61","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"description":"\n Exclusive or or exclusive disjunction is a\n logical operation that outputs true only when\n inputs differ (one is true, the other is false).\n\n XOR outputs true whenever the inputs differ:\n\n Source:\n https://en.wikipedia.org/wiki/Exclusive_or\n :return:\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e5b6ae7757c6e743","name":"stdout","source":"e5b6ae7757c6e743.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"4736a066b330a3e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4738c72e7ac209e4.json b/allure-report/data/test-cases/4738c72e7ac209e4.json deleted file mode 100644 index 7148ef255a6..00000000000 --- a/allure-report/data/test-cases/4738c72e7ac209e4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"4738c72e7ac209e4","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"description":"\n Testing 'zeros' program that should calculate the number\n of trailing zeros in a factorial of a given number.\n :return: None\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"60ceec260ccbe12f","name":"stdout","source":"60ceec260ccbe12f.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Snail"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"474912065ebca71.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/476ac59c15a93d4b.json b/allure-report/data/test-cases/476ac59c15a93d4b.json new file mode 100644 index 00000000000..e3b22a6e059 --- /dev/null +++ b/allure-report/data/test-cases/476ac59c15a93d4b.json @@ -0,0 +1 @@ +{"uid":"476ac59c15a93d4b","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"description":"\n Testing check_exam function\n\n The function should return the score\n for this array of answers, giving +4\n for each correct answer, -1 for each\n incorrect answer, and +0 for each blank\n answer(empty string).\n\n :return:\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7e868f0d93022512","name":"stdout","source":"7e868f0d93022512.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"47c7c905d0e48c01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47e3461a4e252fc1.json b/allure-report/data/test-cases/47e3461a4e252fc1.json new file mode 100644 index 00000000000..7b96931e1c0 --- /dev/null +++ b/allure-report/data/test-cases/47e3461a4e252fc1.json @@ -0,0 +1 @@ +{"uid":"47e3461a4e252fc1","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9e4cc550b1ac8808","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0}},{"uid":"c3f4680f378d24e0","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0}},{"uid":"635a66b4aaab6101","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"84d7e1eb21948129","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3d40466198fa34e6","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0}},{"uid":"fda81d5edcbfeda5","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0}},{"uid":"9f7fc4731241a976","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"cd298347a8b67e93","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"47e3461a4e252fc1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/47eeb9c764763918.json b/allure-report/data/test-cases/47eeb9c764763918.json new file mode 100644 index 00000000000..a2f7f8606b2 --- /dev/null +++ b/allure-report/data/test-cases/47eeb9c764763918.json @@ -0,0 +1 @@ +{"uid":"47eeb9c764763918","name":"Testing permute_a_palindrome (positive)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_positive","historyId":"faf1054cf60e3f1fbb45c8dc0ece579f","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"PARSING"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Count IP Addresses"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"4803d92c50fef81a.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/482cc1b462231f44.json b/allure-report/data/test-cases/482cc1b462231f44.json
new file mode 100644
index 00000000000..98211d85ee2
--- /dev/null
+++ b/allure-report/data/test-cases/482cc1b462231f44.json
@@ -0,0 +1 @@
+{"uid":"482cc1b462231f44","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"description":"\n Testing Line Safari functionality\n Negative test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 37, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d645ef6b4817b107","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218558,"stop":1732764218558,"duration":0}},{"uid":"f5045863352b0844","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193914,"stop":1732428193914,"duration":0}},{"uid":"82ae018d43c04f85","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"b89f1a91511e43fe","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"577d9e765fb39849","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218558,"stop":1732764218558,"duration":0}},{"uid":"996ab105867adbc9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193914,"stop":1732428193914,"duration":0}},{"uid":"88c7e92ae3f035ea","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"620b2589fb870406","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"482cc1b462231f44.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/4875af937b850b1f.json b/allure-report/data/test-cases/4875af937b850b1f.json
new file mode 100644
index 00000000000..7f00ad6e22e
--- /dev/null
+++ b/allure-report/data/test-cases/4875af937b850b1f.json
@@ -0,0 +1 @@
+{"uid":"4875af937b850b1f","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_true","historyId":"c8ef830d4279bee02e53bf3a04349c35","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return true if it is a factor.\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1733030100106,"stop":1733030100106,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1733030100106,"stop":1733030100106,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Easy Diagonal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4b7f4ecd4f7fef24","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745}},{"uid":"52c8b26b912e9951","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717}},{"uid":"da31e11488208aed","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"ab7fe234dc976ac6","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"53eb34bc4e02fa07","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745}},{"uid":"56da494ae1701253","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717}},{"uid":"964ad50f448ed64d","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"7f2ec06c200d3086","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"48f19bb58dd1432f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/48f4ecefce5c7b7e.json b/allure-report/data/test-cases/48f4ecefce5c7b7e.json new file mode 100644 index 00000000000..6dab3293878 --- /dev/null +++ b/allure-report/data/test-cases/48f4ecefce5c7b7e.json @@ -0,0 +1 @@ +{"uid":"48f4ecefce5c7b7e","name":"Testing dirReduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f5d9059f956d5013","name":"stdout","source":"f5d9059f956d5013.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Directions Reduction"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"48f4ecefce5c7b7e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49244d740987433.json b/allure-report/data/test-cases/49244d740987433.json new file mode 100644 index 00000000000..fda1e6e9b25 --- /dev/null +++ b/allure-report/data/test-cases/49244d740987433.json @@ -0,0 +1 @@ +{"uid":"49244d740987433","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1732764218692,"stop":1732764218692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"VALIDATION"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"4928db7c01341cec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49330a85ee41c454.json b/allure-report/data/test-cases/49330a85ee41c454.json new file mode 100644 index 00000000000..3ac40739301 --- /dev/null +++ b/allure-report/data/test-cases/49330a85ee41c454.json @@ -0,0 +1 @@ +{"uid":"49330a85ee41c454","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732764221042,"stop":1732764221042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"49330a85ee41c454.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4968a6d06aaa9f9c.json b/allure-report/data/test-cases/4968a6d06aaa9f9c.json new file mode 100644 index 00000000000..965fb8dc405 --- /dev/null +++ b/allure-report/data/test-cases/4968a6d06aaa9f9c.json @@ -0,0 +1 @@ +{"uid":"4968a6d06aaa9f9c","name":"Should return 'I smell a series!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_series","historyId":"fd37424f9957f0d1afe768cce5a8cc08","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"Should return True for valid parentheses.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"Should return True for valid parentheses.
","status":"passed","steps":[{"name":"Enter test string ('()', '((()))', '()()()', '(()())()', '()(())((()))(())()')and verify that the function returns True.","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ('()', '((()))', '()()()', '(()())()', '()(())((()))(())()')and verify that the function returns True.","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ('()', '((()))', '()()()', '(()())()', '()(())((()))(())()')and verify that the function returns True.","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ('()', '((()))', '()()()', '(()())()', '()(())((()))(())()')and verify that the function returns True.","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ('()', '((()))', '()()()', '(()())()', '()(())((()))(())()')and verify that the function returns True.","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Valid Parentheses"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/6411b91a5e71b915d237332d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},"source":"4990a9f9fb7d9809.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/49d94e51d64718a4.json b/allure-report/data/test-cases/49d94e51d64718a4.json new file mode 100644 index 00000000000..77d852a2b8f --- /dev/null +++ b/allure-report/data/test-cases/49d94e51d64718a4.json @@ -0,0 +1 @@ +{"uid":"49d94e51d64718a4","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1732428194048,"stop":1732428194048,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1732428194108,"stop":1732428194108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1732428194117,"stop":1732428194117,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Sum by Factors"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"4ade5d7baabdb848.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4aeb02bd06c6709d.json b/allure-report/data/test-cases/4aeb02bd06c6709d.json new file mode 100644 index 00000000000..114cba016f9 --- /dev/null +++ b/allure-report/data/test-cases/4aeb02bd06c6709d.json @@ -0,0 +1 @@ +{"uid":"4aeb02bd06c6709d","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732764219386,"stop":1732764219386,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1732764219387,"stop":1732764219387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1732764220132,"stop":1732764220132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1732764220144,"stop":1732764220144,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Diagonal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"4b7f4ecd4f7fef24.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4b82056eac592aba.json b/allure-report/data/test-cases/4b82056eac592aba.json new file mode 100644 index 00000000000..828ce18c62c --- /dev/null +++ b/allure-report/data/test-cases/4b82056eac592aba.json @@ -0,0 +1 @@ +{"uid":"4b82056eac592aba","name":"'multiply' function verification with random list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_random_list","historyId":"be99c6f72cdf623836966737dcb7a654","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e94d8c1e516fca3a","name":"stdout","source":"e94d8c1e516fca3a.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Performance"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Row of the odd triangle"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"55242408764fe7c9","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"4c3877c30e625752.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c4230f8e0e384cc.json b/allure-report/data/test-cases/4c4230f8e0e384cc.json new file mode 100644 index 00000000000..05853ef8ce4 --- /dev/null +++ b/allure-report/data/test-cases/4c4230f8e0e384cc.json @@ -0,0 +1 @@ +{"uid":"4c4230f8e0e384cc","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732428195509,"stop":1732428195510,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1732428195512,"stop":1732428195512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Help the bookseller !"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"4c4230f8e0e384cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4c8c8098a5ba0587.json b/allure-report/data/test-cases/4c8c8098a5ba0587.json new file mode 100644 index 00000000000..d5c1a8afd4a --- /dev/null +++ b/allure-report/data/test-cases/4c8c8098a5ba0587.json @@ -0,0 +1 @@ +{"uid":"4c8c8098a5ba0587","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"39cdb5ecef1e6852","name":"stdout","source":"39cdb5ecef1e6852.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"4d2239036502cf20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4d53eb58d77047e8.json b/allure-report/data/test-cases/4d53eb58d77047e8.json new file mode 100644 index 00000000000..ea2f7ac68f2 --- /dev/null +++ b/allure-report/data/test-cases/4d53eb58d77047e8.json @@ -0,0 +1 @@ +{"uid":"4d53eb58d77047e8","name":"Testing first_non_repeating_letter function","fullName":"kyu_5.first_non_repeating_character.test_first_non_repeating_letter.FirstNonRepeatingLetterTestCase#test_first_non_repeating_letter","historyId":"cff7d7f7b55b35458669cd92cb129d06","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"description":"\n Testing a function named first_non_repeating_letter\n that takes a string input, and returns the first character\n that is not repeated anywhere in the string.\n\n For example, if given the input 'stress', the function\n should return 't', since the letter t only occurs once\n in the string, and occurs first in the string.\n\n As an added challenge, upper- and lowercase letters are\n considered the same character, but the function should\n return the correct case for the initial letter. For example,\n the input 'sTreSS' should return 'T'.\n\n If a string contains all repeating characters, it should\n return an empty string (\"\") or None -- see sample tests.\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196244,"stop":1732428196244,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"4db417c919f14dad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4df2e31ca734bf47.json b/allure-report/data/test-cases/4df2e31ca734bf47.json new file mode 100644 index 00000000000..cca3e6ef50c --- /dev/null +++ b/allure-report/data/test-cases/4df2e31ca734bf47.json @@ -0,0 +1 @@ +{"uid":"4df2e31ca734bf47","name":"test_solution_big","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_big","historyId":"128bd70e221c2c2b932b5e8d4fdb22c0","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"description":"\n Testing using big test data\n :return:\n ","descriptionHtml":" Testing using big test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 70, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Diophantine Equation"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"427e4e0e38cec3a1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218842,"stop":1732764218842,"duration":0}},{"uid":"94ea40491ebef366","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194190,"stop":1732428194190,"duration":0}},{"uid":"ce842a0bacb75304","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"141816067eecf7ae","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"31802a90aeba5e97","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218842,"stop":1732764218842,"duration":0}},{"uid":"c42292a9c36c46f3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194190,"stop":1732428194190,"duration":0}},{"uid":"a6bf4a932c1ec147","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"6827fd264cb4d263","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"4df2e31ca734bf47.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/4e0b9180415d7384.json b/allure-report/data/test-cases/4e0b9180415d7384.json
new file mode 100644
index 00000000000..536a67794f2
--- /dev/null
+++ b/allure-report/data/test-cases/4e0b9180415d7384.json
@@ -0,0 +1 @@
+{"uid":"4e0b9180415d7384","name":"'multiply' function verification with random list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_random_list","historyId":"be99c6f72cdf623836966737dcb7a654","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sort the odd"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"61f607b52c867fb3","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0}},{"uid":"a200977d521a9785","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0}},{"uid":"a32047be9db53ed6","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"aadfe826c6aeccf6","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e53952640c2c9e47","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0}},{"uid":"fc455123cb448d3e","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0}},{"uid":"31cd5c9e8017f83c","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"1ef3e1da7f90eb82","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}}]},"tags":["FUNDAMENTALS","ARRAYS"]},"source":"4e3f7ea473e691d3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4e3fc5966ad47411.json b/allure-report/data/test-cases/4e3fc5966ad47411.json new file mode 100644 index 00000000000..77a1c4a2135 --- /dev/null +++ b/allure-report/data/test-cases/4e3fc5966ad47411.json @@ -0,0 +1 @@ +{"uid":"4e3fc5966ad47411","name":"Testing 'letter_count' function","fullName":"kyu_6.count_letters_in_string.test_count_letters_in_string.CountLettersInStringTestCase#test_count_letters_in_string","historyId":"04bb543ec741bd163e341a33a1623692","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2096e2c2c39f7dc3","name":"stdout","source":"2096e2c2c39f7dc3.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"FORMATTING"},{"name":"story","value":"Human readable duration format"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"4e87d924fe50548.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4ed891af5fcb8959.json b/allure-report/data/test-cases/4ed891af5fcb8959.json new file mode 100644 index 00000000000..0e5227a2412 --- /dev/null +++ b/allure-report/data/test-cases/4ed891af5fcb8959.json @@ -0,0 +1 @@ +{"uid":"4ed891af5fcb8959","name":"Testing binary_to_string function","fullName":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string.SequenceTestCase#test_binary_to_string","historyId":"5e3d4a7b89a7ecee6b57c2383b63527b","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9817c9d821675f57","name":"stdout","source":"9817c9d821675f57.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ASCII"},{"name":"suite","value":"Character Encodings"},{"name":"feature","value":"String"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"BINARY"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"4ed891af5fcb8959.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4eec4d08404980cd.json b/allure-report/data/test-cases/4eec4d08404980cd.json new file mode 100644 index 00000000000..e5cba99ab1b --- /dev/null +++ b/allure-report/data/test-cases/4eec4d08404980cd.json @@ -0,0 +1 @@ +{"uid":"4eec4d08404980cd","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732764219205,"stop":1732764219205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732764219206,"stop":1732764219207,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732764219207,"stop":1732764219207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732764219207,"stop":1732764219207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732764219207,"stop":1732764219207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732764219207,"stop":1732764219207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1732764219209,"stop":1732764219209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAY"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"4f327dad8c4d7133.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/4f80880da2e426c8.json b/allure-report/data/test-cases/4f80880da2e426c8.json new file mode 100644 index 00000000000..f28c16adc83 --- /dev/null +++ b/allure-report/data/test-cases/4f80880da2e426c8.json @@ -0,0 +1 @@ +{"uid":"4f80880da2e426c8","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an un-existing item and verify the result","time":{"start":1732764219350,"stop":1732764219350,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"4f80880da2e426c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5016998388e149a3.json b/allure-report/data/test-cases/5016998388e149a3.json new file mode 100644 index 00000000000..fbe41b72075 --- /dev/null +++ b/allure-report/data/test-cases/5016998388e149a3.json @@ -0,0 +1 @@ +{"uid":"5016998388e149a3","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"description":"\n Testing set_alarm function with various test inputs.\n\n The function should return true if you are employed\n and not on vacation (because these are the circumstances\n under which you need to set an alarm). It should return\n false otherwise.\n\n Examples:\n\n setAlarm(true, true) -> false\n setAlarm(false, true) -> false\n setAlarm(false, false) -> false\n setAlarm(true, false) -> true\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that should take a shuffled list of unique numbers\n from 1 to n with one element missing (which can be any\n number including n). Should return this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"edfc621ad66d7630","name":"stdout","source":"edfc621ad66d7630.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PERFORMANCE"},{"name":"story","value":"Number Zoo Patrol"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"501c2967d3373bac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5021f02eb7703e13.json b/allure-report/data/test-cases/5021f02eb7703e13.json deleted file mode 100644 index 922797564e0..00000000000 --- a/allure-report/data/test-cases/5021f02eb7703e13.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5021f02eb7703e13","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"description":"\n Your task is to verify that 'order' function\n sorts a given string by following rules:\n\n 1. Each word in the string will contain a single number.\n This number is the position the word should have in the result.\n\n 2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).\n\n 3. If the input string is empty, return an empty string. The words in the\n input String will only contain valid consecutive numbers.\n\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e0460595a654ff1f","name":"stdout","source":"e0460595a654ff1f.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"502fa7fe3b72cd9a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5052ffebbe9e5222.json b/allure-report/data/test-cases/5052ffebbe9e5222.json new file mode 100644 index 00000000000..0136a6460ab --- /dev/null +++ b/allure-report/data/test-cases/5052ffebbe9e5222.json @@ -0,0 +1 @@ +{"uid":"5052ffebbe9e5222","name":"Testing next_smaller function","fullName":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller.NextSmallerTestCase#test_next_smaller","historyId":"9d8cb8adf1764c55348d349698b938ac","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1732764218643,"stop":1732764218643,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"5052ffebbe9e5222.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/50577b0cb2a4b7be.json b/allure-report/data/test-cases/50577b0cb2a4b7be.json new file mode 100644 index 00000000000..656e5eddb3b --- /dev/null +++ b/allure-report/data/test-cases/50577b0cb2a4b7be.json @@ -0,0 +1 @@ +{"uid":"50577b0cb2a4b7be","name":"Testing 'sum_triangular_numbers' with zero","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_zero","historyId":"fc1061f17dd61adf726ad7c2bb23539c","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030098974,"stop":1733030098989,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a3e837b6100ae0c4","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14}},{"uid":"a30e32170a464ad0","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4}},{"uid":"3765df1aaa05656f","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"8729b907b71b7609","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b684b0c7250ecf6d","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14}},{"uid":"f727d28e098b30b7","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4}},{"uid":"9cb8749ab5d5d5c7","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"2ed8dfd7ca5a3d13","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}}]},"tags":["ALGORITHMS"]},"source":"506e0ee504d23a05.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/50aed2563bca9cb0.json b/allure-report/data/test-cases/50aed2563bca9cb0.json new file mode 100644 index 00000000000..80fd21d21a6 --- /dev/null +++ b/allure-report/data/test-cases/50aed2563bca9cb0.json @@ -0,0 +1 @@ +{"uid":"50aed2563bca9cb0","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f28cf2c881206bc7","name":"stdout","source":"f28cf2c881206bc7.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Lists"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"50aed2563bca9cb0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/50d6552ddbe0d86a.json b/allure-report/data/test-cases/50d6552ddbe0d86a.json new file mode 100644 index 00000000000..43c072fcf3c --- /dev/null +++ b/allure-report/data/test-cases/50d6552ddbe0d86a.json @@ -0,0 +1 @@ +{"uid":"50d6552ddbe0d86a","name":"Testing 'has_subpattern' (part 2) function","fullName":"kyu_6.string_subpattern_recognition_2.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"3086879b276d25b4dd0f45ada5d9f20b","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"description":"\n Verify that 'has_subpattern' function to returns\n either true/True or false/False if a string can be\n seen as the repetition of a simpler/shorter subpattern or not.\n\n 1. if a subpattern has been used, it will be repeated\n at least twice, meaning the subpattern has to be\n shorter than the original string;\n\n 2. the strings you will be given might or might not\n be created repeating a given subpattern, then\n shuffling the result.\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"String"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"51076f5a3e3475ad.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/51801b1697e4932d.json b/allure-report/data/test-cases/51801b1697e4932d.json
new file mode 100644
index 00000000000..6f7e5e247c5
--- /dev/null
+++ b/allure-report/data/test-cases/51801b1697e4932d.json
@@ -0,0 +1 @@
+{"uid":"51801b1697e4932d","name":"a or b is negative","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_negative_numbers","historyId":"2889ca714f21625b11b311b780ead719","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"768a2542510e9424","name":"stdout","source":"768a2542510e9424.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Strip Comments"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"51842db2fafc0136.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/51e59668932e1548.json b/allure-report/data/test-cases/51e59668932e1548.json deleted file mode 100644 index fa962e07db9..00000000000 --- a/allure-report/data/test-cases/51e59668932e1548.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"51e59668932e1548","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"51e59668932e1548.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/520c156ef3917d19.json b/allure-report/data/test-cases/520c156ef3917d19.json new file mode 100644 index 00000000000..391167a9676 --- /dev/null +++ b/allure-report/data/test-cases/520c156ef3917d19.json @@ -0,0 +1 @@ +{"uid":"520c156ef3917d19","name":"Testing toJadenCase function (negative)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_negative","historyId":"3a2cad5dab684132d1f8974f9a6b5c75","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1724735127313,"stop":1724735127313,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6ab893879ec80255","name":"stdout","source":"6ab893879ec80255.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Sum by Factors"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"23d2f8eb0089d9c","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"521b14729542d5c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/522017a410240b47.json b/allure-report/data/test-cases/522017a410240b47.json new file mode 100644 index 00000000000..237bd6922c4 --- /dev/null +++ b/allure-report/data/test-cases/522017a410240b47.json @@ -0,0 +1 @@ +{"uid":"522017a410240b47","name":"String with alphabet chars only","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_alpha_only","historyId":"f1e3ad74179a106b1d5dc35a6ffe21fa","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"49e08a4f979422ca","name":"stdout","source":"49e08a4f979422ca.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"PARSING"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"RANKING"},{"name":"story","value":"Most frequently used words in a text"},{"name":"feature","value":"String"},{"name":"tag","value":"FILTERING"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"522dabffb376b9c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5238b22fc20ccda9.json b/allure-report/data/test-cases/5238b22fc20ccda9.json new file mode 100644 index 00000000000..5e268544dea --- /dev/null +++ b/allure-report/data/test-cases/5238b22fc20ccda9.json @@ -0,0 +1 @@ +{"uid":"5238b22fc20ccda9","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"694927049ad61cd3","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0}},{"uid":"7edeace92746910e","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1}},{"uid":"3fc024845e1d1c6","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"d157034757bf8b88","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"324d19209fbeb70d","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0}},{"uid":"28c03a6c5cc24cef","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1}},{"uid":"2aa3a63b6fff605a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"fb3ce43e36479ba0","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5238b22fc20ccda9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/523993bf26b2b2d.json b/allure-report/data/test-cases/523993bf26b2b2d.json new file mode 100644 index 00000000000..189e1bd2934 --- /dev/null +++ b/allure-report/data/test-cases/523993bf26b2b2d.json @@ -0,0 +1 @@ +{"uid":"523993bf26b2b2d","name":"String with no alphabet chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_no_alpha","historyId":"eb9123a4aa86a26d4fdbf67e2370745f","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"afb99113fdc97fa7","name":"stdout","source":"afb99113fdc97fa7.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"LANGUAGE"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PROGRAMMING"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FEATURES"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ADVANCED"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"5283421c34c2facb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/529f7f81e90deb17.json b/allure-report/data/test-cases/529f7f81e90deb17.json new file mode 100644 index 00000000000..9aa61977372 --- /dev/null +++ b/allure-report/data/test-cases/529f7f81e90deb17.json @@ -0,0 +1 @@ +{"uid":"529f7f81e90deb17","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"70549112d1201a37","name":"stdout","source":"70549112d1201a37.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Performance"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Row of the odd triangle"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"529f7f81e90deb17.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52a5dee2c595fefe.json b/allure-report/data/test-cases/52a5dee2c595fefe.json new file mode 100644 index 00000000000..12b62866038 --- /dev/null +++ b/allure-report/data/test-cases/52a5dee2c595fefe.json @@ -0,0 +1 @@ +{"uid":"52a5dee2c595fefe","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1732428194708,"stop":1732428194708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1732428194710,"stop":1732428194710,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1732428195425,"stop":1732428195425,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1732428195438,"stop":1732428195438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Diagonal"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"52c8b26b912e9951.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52e4a6d580ce5f36.json b/allure-report/data/test-cases/52e4a6d580ce5f36.json new file mode 100644 index 00000000000..e499c36123f --- /dev/null +++ b/allure-report/data/test-cases/52e4a6d580ce5f36.json @@ -0,0 +1 @@ +{"uid":"52e4a6d580ce5f36","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1732428193969,"stop":1732428193969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FORMATS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Human readable duration format"},{"name":"tag","value":"FORMATTING"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATES/TIME"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"52e4a6d580ce5f36.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/52e55a2445119fdd.json b/allure-report/data/test-cases/52e55a2445119fdd.json new file mode 100644 index 00000000000..e1296ea408c --- /dev/null +++ b/allure-report/data/test-cases/52e55a2445119fdd.json @@ -0,0 +1 @@ +{"uid":"52e55a2445119fdd","name":"Testing 'has_subpattern' (part 2) function","fullName":"kyu_6.string_subpattern_recognition_2.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"3086879b276d25b4dd0f45ada5d9f20b","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"description":"\n Verify that 'has_subpattern' function to returns\n either true/True or false/False if a string can be\n seen as the repetition of a simpler/shorter subpattern or not.\n\n 1. if a subpattern has been used, it will be repeated\n at least twice, meaning the subpattern has to be\n shorter than the original string;\n\n 2. the strings you will be given might or might not\n be created repeating a given subpattern, then\n shuffling the result.\n :return:\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b5f1637aeba19ba4","name":"stdout","source":"b5f1637aeba19ba4.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Who likes it?"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"5319ce0d16f13f7e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5329936079819472.json b/allure-report/data/test-cases/5329936079819472.json deleted file mode 100644 index 6157a7df27d..00000000000 --- a/allure-report/data/test-cases/5329936079819472.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5329936079819472","name":"Should return 'Publish!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_publish","historyId":"b4a1fa278aa899a374ebad09960e6cca","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
Testing Walker class\n Testing starting position property based on positive grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"5421992f655c2a5d.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/5444c88fc365358c.json b/allure-report/data/test-cases/5444c88fc365358c.json
new file mode 100644
index 00000000000..547a1412088
--- /dev/null
+++ b/allure-report/data/test-cases/5444c88fc365358c.json
@@ -0,0 +1 @@
+{"uid":"5444c88fc365358c","name":"Testing number_of_sigfigs function","fullName":"kyu_7.significant_figures.test_number_of_sigfigs.NumberOfSigFigsTestCase#test_number_of_sigfigs","historyId":"3b2ebb1924dbc4e6a73dc5dda19dd323","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"177ff12f105ad4fb","name":"stdout","source":"177ff12f105ad4fb.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5493a4d389a4b9e6","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e695b3f4b0bdd51b","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"a076808e43574371","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"a492d74df14be54a","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"c11bd2bbb0f17cd9","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"5488ed1b45d5018a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5493a4d389a4b9e6.json b/allure-report/data/test-cases/5493a4d389a4b9e6.json new file mode 100644 index 00000000000..aaea29496e7 --- /dev/null +++ b/allure-report/data/test-cases/5493a4d389a4b9e6.json @@ -0,0 +1 @@ +{"uid":"5493a4d389a4b9e6","name":"Testing count_letters_and_digits function","fullName":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits.CalculateTestCase#test_calculate","historyId":"a9a9cea93ff72e09882edc4b831ce933","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7f5a59d26508f55d","name":"stdout","source":"7f5a59d26508f55d.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"5493a4d389a4b9e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5496efe2fd3e353.json b/allure-report/data/test-cases/5496efe2fd3e353.json new file mode 100644 index 00000000000..f2de4f8077c --- /dev/null +++ b/allure-report/data/test-cases/5496efe2fd3e353.json @@ -0,0 +1 @@ +{"uid":"5496efe2fd3e353","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"54d8fcc9aa407768.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/5503b0de9149b0f0.json b/allure-report/data/test-cases/5503b0de9149b0f0.json
new file mode 100644
index 00000000000..4adae8f326d
--- /dev/null
+++ b/allure-report/data/test-cases/5503b0de9149b0f0.json
@@ -0,0 +1 @@
+{"uid":"5503b0de9149b0f0","name":"Testing period_is_late function (positive)","fullName":"kyu_8.is_your_period_late.test_is_your_period_late.PeriodIsLateTestCase#test_period_is_late_positive","historyId":"763475007d09f077c2c251a191291e14","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"description":"\n Positive tests\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d25c0f30c04fe1a7","name":"stdout","source":"d25c0f30c04fe1a7.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PERFORMANCE"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Row of the odd triangle"},{"name":"suite","value":"Performance"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"55242408764fe7c9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/555817f2fd5ba68f.json b/allure-report/data/test-cases/555817f2fd5ba68f.json new file mode 100644 index 00000000000..61d91ad3f45 --- /dev/null +++ b/allure-report/data/test-cases/555817f2fd5ba68f.json @@ -0,0 +1 @@ +{"uid":"555817f2fd5ba68f","name":"'multiply' function verification with random list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_random_list","historyId":"be99c6f72cdf623836966737dcb7a654","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"55719c1a41a634a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/559abc951e1b2adf.json b/allure-report/data/test-cases/559abc951e1b2adf.json new file mode 100644 index 00000000000..68855d5cf70 --- /dev/null +++ b/allure-report/data/test-cases/559abc951e1b2adf.json @@ -0,0 +1 @@ +{"uid":"559abc951e1b2adf","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732764218599,"stop":1732764218599,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1732764218604,"stop":1732764218604,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"SECURITY"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"56a70ac6c19b5c2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/56ca3efbcb176750.json b/allure-report/data/test-cases/56ca3efbcb176750.json deleted file mode 100644 index f166fbaaa21..00000000000 --- a/allure-report/data/test-cases/56ca3efbcb176750.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"56ca3efbcb176750","name":"String with mixed type of chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_mixed","historyId":"befc81f16d3ea9a4d57ecd3fed78faff","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"description":"\n Test string with mixed type of chars\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"76ccf3919bc3e5ff","name":"stdout","source":"76ccf3919bc3e5ff.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"27163d5f2266ba73","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0}}],"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"578c3a6cd3e7e40f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57946e73be805e2a.json b/allure-report/data/test-cases/57946e73be805e2a.json deleted file mode 100644 index c2acafccea5..00000000000 --- a/allure-report/data/test-cases/57946e73be805e2a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"57946e73be805e2a","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"402ca4d0fca525c3","name":"stdout","source":"402ca4d0fca525c3.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Who likes it?"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6af4bd9ac0e81498","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"57946e73be805e2a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/57bbb6ca73efd1b4.json b/allure-report/data/test-cases/57bbb6ca73efd1b4.json deleted file mode 100644 index 3e44eb56be9..00000000000 --- a/allure-report/data/test-cases/57bbb6ca73efd1b4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"57bbb6ca73efd1b4","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isogram and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string aba and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string moOse and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the result","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8cf8917f49abc708","name":"stdout","source":"8cf8917f49abc708.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Isograms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"59d6a997f5b4aca5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5a12cd507dfc239d.json b/allure-report/data/test-cases/5a12cd507dfc239d.json new file mode 100644 index 00000000000..235bcc42d4d --- /dev/null +++ b/allure-report/data/test-cases/5a12cd507dfc239d.json @@ -0,0 +1 @@ +{"uid":"5a12cd507dfc239d","name":"Testing first_non_repeated function with various inputs","fullName":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated.FirstNonRepeatedTestCase#test_first_non_repeated","historyId":"9398abf0c9f75b70331fc87dcc2b8a7f","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Permutations"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERMUTATIONS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b37adbf845502fe8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218647,"stop":1732764218647,"duration":0}},{"uid":"231a2a65aa8e32a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193998,"stop":1732428193998,"duration":0}},{"uid":"ab9420b5e475e35","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"f9dcb27f6a2f5731","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"c25f8210fdb51a41","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218647,"stop":1732764218647,"duration":0}},{"uid":"4942ac4be65ef1b0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193998,"stop":1732428193998,"duration":0}},{"uid":"1319e1ae94efdc02","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"6fbcaa806475fb37","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"5a5d0954bb249b69.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/5a6f2f90ae14c26f.json b/allure-report/data/test-cases/5a6f2f90ae14c26f.json
new file mode 100644
index 00000000000..ae4c24a73bd
--- /dev/null
+++ b/allure-report/data/test-cases/5a6f2f90ae14c26f.json
@@ -0,0 +1 @@
+{"uid":"5a6f2f90ae14c26f","name":"'multiply' function verification: lists with multiple digits","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest","historyId":"6105a97f729c5e36b325cf44492db688","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"description":"\n Test lists with multiple digits\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ARRAY"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f327dad8c4d7133","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2}},{"uid":"f50250db1c4c6a23","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0}},{"uid":"e1b199f4400527d4","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"7c87151d683c2aad","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"48e03b38164b77c2","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2}},{"uid":"6e3ab906ce5621b5","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0}},{"uid":"6cad203fab564c60","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"63cbfe00daba1c69","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"tags":["ARRAY","ALGORITHMS"]},"source":"5b5df6c66b23ba75.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5b87063c55d646fa.json b/allure-report/data/test-cases/5b87063c55d646fa.json new file mode 100644 index 00000000000..c864b9e4e16 --- /dev/null +++ b/allure-report/data/test-cases/5b87063c55d646fa.json @@ -0,0 +1 @@ +{"uid":"5b87063c55d646fa","name":"All chars are in upper case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_caps","historyId":"f47162ca0e9bacec154c9094fd33e635","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"125be537d5adaaca","name":"stdout","source":"125be537d5adaaca.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human readable duration format"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"DATES/TIME"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"5ba85cabbe7e4e64.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5bbc7cd8e2683c41.json b/allure-report/data/test-cases/5bbc7cd8e2683c41.json new file mode 100644 index 00000000000..29b52ab2c4b --- /dev/null +++ b/allure-report/data/test-cases/5bbc7cd8e2683c41.json @@ -0,0 +1 @@ +{"uid":"5bbc7cd8e2683c41","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1f77a5204398ee70","name":"stdout","source":"1f77a5204398ee70.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ASCII"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Character Encodings"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BINARY"},{"name":"tag","value":"FORMATS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"39e365f7b1aa879c","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"5c281d5272513bfd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c460b7e756cd57.json b/allure-report/data/test-cases/5c460b7e756cd57.json new file mode 100644 index 00000000000..8210ffd514e --- /dev/null +++ b/allure-report/data/test-cases/5c460b7e756cd57.json @@ -0,0 +1 @@ +{"uid":"5c460b7e756cd57","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"tag","value":"UTILS"},{"name":"feature","value":"Utils"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PRIMES"},{"name":"story","value":"Testing is_prime util"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"69bff1baf8829aa6","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1}},{"uid":"9400c2351555d83a","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0}},{"uid":"5c8cbacba511411","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"de75cf0cb11d4a8a","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d731ec2306766d91","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1}},{"uid":"62ef482e2cb3493b","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0}},{"uid":"1b3bd0a5ea1aa072","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"2030ea00b6998f67","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"5c460b7e756cd57.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c64823a2a73f974.json b/allure-report/data/test-cases/5c64823a2a73f974.json deleted file mode 100644 index c6d48eaa9ee..00000000000 --- a/allure-report/data/test-cases/5c64823a2a73f974.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5c64823a2a73f974","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"917768a471c3713a","name":"stdout","source":"917768a471c3713a.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Strip Comments"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3f5cda838e1e2c35","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"5c64823a2a73f974.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c8cbacba511411.json b/allure-report/data/test-cases/5c8cbacba511411.json new file mode 100644 index 00000000000..632fc9032d9 --- /dev/null +++ b/allure-report/data/test-cases/5c8cbacba511411.json @@ -0,0 +1 @@ +{"uid":"5c8cbacba511411","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3bb61b0a55d4385d","name":"stdout","source":"3bb61b0a55d4385d.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"5c8cbacba511411.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5c8e94c26f7e775d.json b/allure-report/data/test-cases/5c8e94c26f7e775d.json new file mode 100644 index 00000000000..7ba37338f9b --- /dev/null +++ b/allure-report/data/test-cases/5c8e94c26f7e775d.json @@ -0,0 +1 @@ +{"uid":"5c8e94c26f7e775d","name":"Testing toJadenCase function (negative)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_negative","historyId":"3a2cad5dab684132d1f8974f9a6b5c75","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1732764221172,"stop":1732764221172,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"story","value":"My head is at the wrong end!"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"5cbc168dcad54c45.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5cbeef874f8f5965.json b/allure-report/data/test-cases/5cbeef874f8f5965.json deleted file mode 100644 index 3f2438ee420..00000000000 --- a/allure-report/data/test-cases/5cbeef874f8f5965.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5cbeef874f8f5965","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"29a496fd36abeefa","name":"stdout","source":"29a496fd36abeefa.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"73e2d6b3532a4935","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"5e4b0e05a0862f7e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5e662d87bdd84a50.json b/allure-report/data/test-cases/5e662d87bdd84a50.json deleted file mode 100644 index 2e58891669f..00000000000 --- a/allure-report/data/test-cases/5e662d87bdd84a50.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"5e662d87bdd84a50","name":"Testing compute_ranks","fullName":"kyu_5.sports_league_table_ranking.test_compute_ranks.ComputeRanksTestCase#test_something","historyId":"21739eee721a124a84e5414945df03e6","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"description":"\n Test the function that organizes a sports league in a\n round-robin-system. Each team meets all other teams.\n In your league a win gives a team 2 points, a draw gives\n both teams 1 point. After some games you have to compute\n the order of the teams in your league. You use the following\n criteria to arrange the teams:\n\n - Points\n - Scoring differential (the difference between goals scored and those conceded)\n - Goals scored\n\n :return:\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8c7dbf4edab807e9","name":"stdout","source":"8c7dbf4edab807e9.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1c1ac4b8936ce5ba","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"5ef0ca25b0e8e9c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ef563c60f1007ea.json b/allure-report/data/test-cases/5ef563c60f1007ea.json new file mode 100644 index 00000000000..5e04f55c049 --- /dev/null +++ b/allure-report/data/test-cases/5ef563c60f1007ea.json @@ -0,0 +1 @@ +{"uid":"5ef563c60f1007ea","name":"Testing hoop_count function (positive test case)","fullName":"kyu_8.keep_up_the_hoop.test_hoop_count.HoopCountTestCase#test_hoop_count_positive","historyId":"4110170ab332498939ad9f2d0f38cf97","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"description":"\n Testing hoop_count function\n\n Alex just got a new hula hoop, he loves it but feels\n discouraged because his little brother is better than him\n\n Write a program where Alex can input (n) how many times\n the hoop goes round and it will return him an encouraging message\n\n - If Alex gets 10 or more hoops, return the string \"Great, now move on to tricks\".\n - If he doesn't get 10 hoops, return the string \"Keep at it until you get it\".\n\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732764220283,"stop":1732764220283,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that a function that given a sequence of strings,\n groups the elements that can be obtained by rotating others,\n ignoring upper or lower cases.\n\n In the event that an element appears more than once in\n the input sequence, only one of them will be taken into\n account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220285,"stop":1732764220285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220285,"stop":1732764220285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220285,"stop":1732764220285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220285,"stop":1732764220285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220285,"stop":1732764220285,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220286,"stop":1732764220286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220286,"stop":1732764220286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220286,"stop":1732764220286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1732764220288,"stop":1732764220288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"PUZZLES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"5f01b1bb86ec5e4a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f37f1e35250223f.json b/allure-report/data/test-cases/5f37f1e35250223f.json new file mode 100644 index 00000000000..1a87275476d --- /dev/null +++ b/allure-report/data/test-cases/5f37f1e35250223f.json @@ -0,0 +1 @@ +{"uid":"5f37f1e35250223f","name":"Testing done_or_not function","fullName":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku.DidIFinishedSudokuTestCase#test_done_or_not","historyId":"7c59feaf54bd4089e056f041844e3fe6","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6aac0d6477d82d49","name":"stdout","source":"6aac0d6477d82d49.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LOOPS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"5f37f1e35250223f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5f3a50fbe3f45101.json b/allure-report/data/test-cases/5f3a50fbe3f45101.json new file mode 100644 index 00000000000..47bd3d7937d --- /dev/null +++ b/allure-report/data/test-cases/5f3a50fbe3f45101.json @@ -0,0 +1 @@ +{"uid":"5f3a50fbe3f45101","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"Testing position property based on negative grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"Testing position property based on negative grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"String"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"5f7165cd602afcbf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5fb0fdc1cb454fb.json b/allure-report/data/test-cases/5fb0fdc1cb454fb.json new file mode 100644 index 00000000000..22a4973422b --- /dev/null +++ b/allure-report/data/test-cases/5fb0fdc1cb454fb.json @@ -0,0 +1 @@ +{"uid":"5fb0fdc1cb454fb","name":"Testing number_of_sigfigs function","fullName":"kyu_7.significant_figures.test_number_of_sigfigs.NumberOfSigFigsTestCase#test_number_of_sigfigs","historyId":"3b2ebb1924dbc4e6a73dc5dda19dd323","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Who likes it?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e5feb33263ee430e","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0}},{"uid":"f2bd505717a279f1","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0}},{"uid":"5319ce0d16f13f7e","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"fc29d3ec888c78ca","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6bab07231bfb8a25","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0}},{"uid":"fb237eeb673713e3","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0}},{"uid":"d7357eaa8c15ec47","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]},"source":"5ff9cf70b259ca21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/5ffc12c38a719895.json b/allure-report/data/test-cases/5ffc12c38a719895.json new file mode 100644 index 00000000000..40e8a526361 --- /dev/null +++ b/allure-report/data/test-cases/5ffc12c38a719895.json @@ -0,0 +1 @@ +{"uid":"5ffc12c38a719895","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"description":"\n For this exercise you will create a global flatten method.\n The method takes in any number of arguments and flattens\n them into a single array. If any of the arguments passed in\n are an array then the individual objects within the array\n will be flattened so that they exist at the same level as\n the other arguments. Any nested arrays, no matter how deep,\n should be flattened into the single array result.\n\n The following are examples of how this function would be\n used and what the expected results would be:\n\n flatten(1, [2, 3], 4, 5, [6, [7]]) # returns [1, 2, 3, 4, 5, 6, 7]\n flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns\n ['a', 'b', 2, 3, None, 4, 'c']\n :return:\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on negative grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 89, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"6066d349be23d299.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/6081ff969f9ea72a.json b/allure-report/data/test-cases/6081ff969f9ea72a.json
new file mode 100644
index 00000000000..dcfe3fe11c8
--- /dev/null
+++ b/allure-report/data/test-cases/6081ff969f9ea72a.json
@@ -0,0 +1 @@
+{"uid":"6081ff969f9ea72a","name":"Testing 'shortest_job_first(' function","fullName":"kyu_6.scheduling.test_solution.SJFTestCase#test_sjf","historyId":"da4a41f0bf9943ee34282e89227dd9a2","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase","time":{"start":1732428195625,"stop":1732428195625,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","steps":[{"name":"Enter a n (([0], 0)) and verify the expected output (100) vs actual result (100)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 10, 20, 0, 0], 0)) and verify the expected output (6) vs actual result (6)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 10, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 0, 20, 0, 0], 2)) and verify the expected output (26) vs actual result (26)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([20, 20, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 19, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 0, 19, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 18, 0, 0], 75)) and verify the expected output (1008) vs actual result (1008)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 13, 13, 12, 17, 0, 15, 0, 12, 0, 15, 0, 0, 12, 19, 11, 10, 0, 11, 18, 0, 0, 15, 20, 0, 16, 12, 17, 0, 0, 10, 19, 0, 9, 0, 16, 19, 16, 15, 0, 17, 0, 13, 11, 19, 18, 13, 10, 0, 20, 0, 10, 9, 18, 14, 18, 0, 15, 17, 10, 17, 0, 0, 0, 18, 0, 0, 19, 14, 0, 0, 19, 19, 0, 0, 0, 0, 0, 9, 18, 0, 0, 11, 16, 0, 0, 0, 0, 10, 0, 17, 0, 16, 0, 0, 0, 16, 0, 13, 20, 0, 20, 20, 0, 0, 20, 14, 0, 11, 0, 9, 0, 0, 20, 11, 17, 0, 12, 13, 16, 13, 19, 0, 18, 20, 0, 19, 10, 19, 12, 0, 18, 0, 14, 9, 0, 0, 0, 13, 14, 9, 18, 9, 11, 19, 10, 20, 17, 13, 0, 13, 0, 12, 0, 19, 0, 14, 0, 20, 0, 14, 12, 11, 18, 0, 0, 9, 0, 19], 24)) and verify the expected output (275) vs actual result (275)","time":{"start":1732428195626,"stop":1732428195626,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase::0","time":{"start":1732428195628,"stop":1732428195628,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"QUEUES"},{"name":"story","value":"Scheduling (Shortest Job First or SJF)"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"SCHEDULING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.scheduling.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550cc572b9e7b563be00054f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"6081ff969f9ea72a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60f5877935ced5c5.json b/allure-report/data/test-cases/60f5877935ced5c5.json deleted file mode 100644 index a8b60e0827d..00000000000 --- a/allure-report/data/test-cases/60f5877935ced5c5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"60f5877935ced5c5","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127703,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127703,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127735,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724735127735,"stop":1724735127781,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724735127781,"stop":1724735127813,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5084a50ffeae5e8e","name":"stdout","source":"5084a50ffeae5e8e.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724735127813,"stop":1724735127813,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Integers: Recreation One"},{"name":"feature","value":"Optimization"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c16d54e01aa089ec","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"60f5877935ced5c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/60f76b164a916b4e.json b/allure-report/data/test-cases/60f76b164a916b4e.json new file mode 100644 index 00000000000..9b37893fbe9 --- /dev/null +++ b/allure-report/data/test-cases/60f76b164a916b4e.json @@ -0,0 +1 @@ +{"uid":"60f76b164a916b4e","name":"Testing set_alarm function","fullName":"kyu_8.set_alarm.test_set_alarm.SetAlarmTestCase#test_set_alarm","historyId":"77c7125894dc4635fdd1db51405959d3","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"description":"\n Testing set_alarm function with various test inputs.\n\n The function should return true if you are employed\n and not on vacation (because these are the circumstances\n under which you need to set an alarm). It should return\n false otherwise.\n\n Examples:\n\n setAlarm(true, true) -> false\n setAlarm(false, true) -> false\n setAlarm(false, false) -> false\n setAlarm(true, false) -> true\n :return:\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc class\n\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5a674ed3663720ba","name":"stdout","source":"5a674ed3663720ba.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"2 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"PARSING STRINGS"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"OPERATORS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"parentSuite","value":"Proficient"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"61355273b18aad8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61b2bb726cd1f52e.json b/allure-report/data/test-cases/61b2bb726cd1f52e.json new file mode 100644 index 00000000000..6236f6a8dc5 --- /dev/null +++ b/allure-report/data/test-cases/61b2bb726cd1f52e.json @@ -0,0 +1 @@ +{"uid":"61b2bb726cd1f52e","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 86, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Diophantine Equation"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"61b2bb726cd1f52e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61c11f4086f447bf.json b/allure-report/data/test-cases/61c11f4086f447bf.json new file mode 100644 index 00000000000..d7d2bfddf85 --- /dev/null +++ b/allure-report/data/test-cases/61c11f4086f447bf.json @@ -0,0 +1 @@ +{"uid":"61c11f4086f447bf","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1732428194165,"stop":1732428194165,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ADVANCED"},{"name":"tag","value":"DECLARATIVE"},{"name":"tag","value":"LANGUAGE"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"feature","value":"String"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"FEATURES"},{"name":"tag","value":"PROGRAMMING"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},"source":"61c11f4086f447bf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/61f607b52c867fb3.json b/allure-report/data/test-cases/61f607b52c867fb3.json new file mode 100644 index 00000000000..75ada8d2478 --- /dev/null +++ b/allure-report/data/test-cases/61f607b52c867fb3.json @@ -0,0 +1 @@ +{"uid":"61f607b52c867fb3","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1732764220314,"stop":1732764220314,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sort the odd"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"61f607b52c867fb3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/620b2589fb870406.json b/allure-report/data/test-cases/620b2589fb870406.json deleted file mode 100644 index 4ae3e750215..00000000000 --- a/allure-report/data/test-cases/620b2589fb870406.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"620b2589fb870406","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"description":"\n Testing Line Safari functionality\n Negative test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9130d2ce9d2203c6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"620b2589fb870406.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/621a25121601fe95.json b/allure-report/data/test-cases/621a25121601fe95.json
new file mode 100644
index 00000000000..8bebc2033e6
--- /dev/null
+++ b/allure-report/data/test-cases/621a25121601fe95.json
@@ -0,0 +1 @@
+{"uid":"621a25121601fe95","name":"Testing the 'group_cities' function","fullName":"kyu_6.rotate_the_letters_of_each_element.test_group_cities.GroupCitiesTestCase#test_group_cities","historyId":"0b146f7fbac52b042804286da8716f6b","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that a function that given a sequence of strings, groups the elements\n that can be obtained by rotating others, ignoring upper or lower cases.\n\n In the event that an element appears more than once in the input sequence,\n only one of them will be taken into account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4ae64cfa18a7fe16","name":"stdout","source":"4ae64cfa18a7fe16.txt","type":"text/plain","size":1536}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"621a25121601fe95.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62263e93a5cfddb4.json b/allure-report/data/test-cases/62263e93a5cfddb4.json new file mode 100644 index 00000000000..24baa19adf5 --- /dev/null +++ b/allure-report/data/test-cases/62263e93a5cfddb4.json @@ -0,0 +1 @@ +{"uid":"62263e93a5cfddb4","name":"Testing string_to_array function","fullName":"kyu_8.convert_string_to_an_array.test_string_to_array.StringToArrayTestCase#test_string_to_array","historyId":"f51ecfb2c4460f518b2155a78436a09d","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"description":"\n Testing string_to_array function.\n\n A function to split a string and\n convert it into an array of words.\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"5bd79911afafb617","name":"stdout","source":"5bd79911afafb617.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Pairs"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"623e1f94af0b0a8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62692a0c3dd76e6c.json b/allure-report/data/test-cases/62692a0c3dd76e6c.json deleted file mode 100644 index 24925a88cc3..00000000000 --- a/allure-report/data/test-cases/62692a0c3dd76e6c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"62692a0c3dd76e6c","name":"Test that no_space function removes the spaces","fullName":"kyu_8.remove_string_spaces.test_remove_string_spaces.NoSpaceTestCase#test_something","historyId":"8069a1b5a4342457d2dabf5819382a2e","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6caa4cb1d46acc21","name":"stdout","source":"6caa4cb1d46acc21.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Will you make it?"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aad768e2b1065e77","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"627a7fd2fe38a284.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/627ac903c8bfc90f.json b/allure-report/data/test-cases/627ac903c8bfc90f.json new file mode 100644 index 00000000000..5ba7351f1f0 --- /dev/null +++ b/allure-report/data/test-cases/627ac903c8bfc90f.json @@ -0,0 +1 @@ +{"uid":"627ac903c8bfc90f","name":"Testing binary_to_string function","fullName":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string.SequenceTestCase#test_binary_to_string","historyId":"5e3d4a7b89a7ecee6b57c2383b63527b","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1732764219262,"stop":1732764219262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Character Encodings"},{"name":"tag","value":"ASCII"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BINARY"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"tag","value":"FORMATS"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"627ac903c8bfc90f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62bf772c3a2aa5d2.json b/allure-report/data/test-cases/62bf772c3a2aa5d2.json deleted file mode 100644 index 43449a04a6f..00000000000 --- a/allure-report/data/test-cases/62bf772c3a2aa5d2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"62bf772c3a2aa5d2","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"description":"\n In this kata you have to correctly return who\n is the \"survivor\", ie: the last element of a\n Josephus permutation.\n :return:\n ","descriptionHtml":" In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Josephus Survivor"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b7aabddcd2b39bc4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"62bf772c3a2aa5d2.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/62ca3121cbd75dda.json b/allure-report/data/test-cases/62ca3121cbd75dda.json
deleted file mode 100644
index 1b30a80265a..00000000000
--- a/allure-report/data/test-cases/62ca3121cbd75dda.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"62ca3121cbd75dda","name":"All chars are in lower case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_lower","historyId":"124f2add699f3e2269c311afae219c6e","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1f0ce1b1fd5fc576","name":"stdout","source":"1f0ce1b1fd5fc576.txt","type":"text/plain","size":304}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"62dca90ee3fbe009.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/62e4f6698c2439c.json b/allure-report/data/test-cases/62e4f6698c2439c.json deleted file mode 100644 index f6ae85d3a33..00000000000 --- a/allure-report/data/test-cases/62e4f6698c2439c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"62e4f6698c2439c","name":"String with no duplicate chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_none","historyId":"a2426de0b4808429aff451df95bbdc21","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"description":"\n Test string with no duplicate chars\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests").\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"Lists"},{"name":"story","value":"Find the smallest"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"6327808bac6df1db.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/634a6fc50b2ba707.json b/allure-report/data/test-cases/634a6fc50b2ba707.json
new file mode 100644
index 00000000000..9c3a0ecbebe
--- /dev/null
+++ b/allure-report/data/test-cases/634a6fc50b2ba707.json
@@ -0,0 +1 @@
+{"uid":"634a6fc50b2ba707","name":"Testing permute_a_palindrome (negative)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_negative","historyId":"7090b58c62fab362ad673c85c67765af","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8ffb3d947babe2e5","name":"stdout","source":"8ffb3d947babe2e5.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"635a66b4aaab6101.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63600542edbb694a.json b/allure-report/data/test-cases/63600542edbb694a.json new file mode 100644 index 00000000000..41251071e2d --- /dev/null +++ b/allure-report/data/test-cases/63600542edbb694a.json @@ -0,0 +1 @@ +{"uid":"63600542edbb694a","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3e07263d3e995602","name":"stdout","source":"3e07263d3e995602.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"63600542edbb694a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63b9cb3528bcd1e8.json b/allure-report/data/test-cases/63b9cb3528bcd1e8.json new file mode 100644 index 00000000000..c0d140e4527 --- /dev/null +++ b/allure-report/data/test-cases/63b9cb3528bcd1e8.json @@ -0,0 +1 @@ +{"uid":"63b9cb3528bcd1e8","name":"Testing Walker class - position property from positive grids","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_positives","historyId":"8a1027b0cee356a496b84c6b832d107b","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732764218568,"stop":1732764218569,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218574,"stop":1732764218574,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218575,"stop":1732764218575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218575,"stop":1732764218575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218575,"stop":1732764218575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732764218575,"stop":1732764218575,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732764218576,"stop":1732764218576,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"63b9cb3528bcd1e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/63cbfe00daba1c69.json b/allure-report/data/test-cases/63cbfe00daba1c69.json deleted file mode 100644 index 301f1959cbb..00000000000 --- a/allure-report/data/test-cases/63cbfe00daba1c69.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"63cbfe00daba1c69","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eb842e833e18e0a2","name":"stdout","source":"eb842e833e18e0a2.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAY"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77e7a047aea456b4","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0}}],"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"63cbfe00daba1c69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6400e4ce63a07c82.json b/allure-report/data/test-cases/6400e4ce63a07c82.json deleted file mode 100644 index cc67bf89df1..00000000000 --- a/allure-report/data/test-cases/6400e4ce63a07c82.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6400e4ce63a07c82","name":"String with no alphabet chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_no_alpha","historyId":"eb9123a4aa86a26d4fdbf67e2370745f","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"description":"\n Test string with no alphabet chars\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"56a70ac6c19b5c2a","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0}},{"uid":"d4260955f91337ec","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0}},{"uid":"83c9df798b4e44f","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"7086e3f0d0497484","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5e4416fd32f6992f","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0}},{"uid":"9dd5714486b51753","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0}},{"uid":"8a76fd0002a5824c","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"3fa15071b1bee987","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"644c808df55456e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/647dfe698e2a6fdb.json b/allure-report/data/test-cases/647dfe698e2a6fdb.json deleted file mode 100644 index f2a50170051..00000000000 --- a/allure-report/data/test-cases/647dfe698e2a6fdb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"647dfe698e2a6fdb","name":"Testing top_3_words function","fullName":"kyu_4.most_frequently_used_words.test_top_3_words.Top3WordsTestCase#test_top_3_words","historyId":"749ee6e9278a75fb77637153b8003619","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"69eb503d0999422e","name":"stdout","source":"69eb503d0999422e.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"RANKING"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FILTERING"},{"name":"story","value":"Most frequently used words in a text"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9d396e0b9ed83131","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"647dfe698e2a6fdb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/64e42fae205d69e4.json b/allure-report/data/test-cases/64e42fae205d69e4.json new file mode 100644 index 00000000000..c3506eeb582 --- /dev/null +++ b/allure-report/data/test-cases/64e42fae205d69e4.json @@ -0,0 +1 @@ +{"uid":"64e42fae205d69e4","name":"Testing 'generate_hashtag' function","fullName":"kyu_5.the_hashtag_generator.test_generate_hashtag.GenerateHashtagTestCase#test_generate_hashtag","historyId":"ff2324e4a058a6c42486fd5aff532ecf","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"description":"\n Testing 'generate_hashtag' function\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"65073b7edfec4e6b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65318d64270bf167.json b/allure-report/data/test-cases/65318d64270bf167.json new file mode 100644 index 00000000000..00db9f25132 --- /dev/null +++ b/allure-report/data/test-cases/65318d64270bf167.json @@ -0,0 +1 @@ +{"uid":"65318d64270bf167","name":"Testing hoop_count function (positive test case)","fullName":"kyu_8.keep_up_the_hoop.test_hoop_count.HoopCountTestCase#test_hoop_count_positive","historyId":"4110170ab332498939ad9f2d0f38cf97","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"description":"\n Testing hoop_count function (positive)\n\n Alex just got a new hula hoop, he loves it but feels\n discouraged because his little brother is better than him\n\n Write a program where Alex can input (n) how many times\n the hoop goes round and it will return him an encouraging message\n\n - 10 or more hoops, return \"Great, now move on to tricks\".\n\n - Not 10 hoops, return \"Keep at it until you get it\".\n\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"b0ff98cda0b0c43","name":"stdout","source":"b0ff98cda0b0c43.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"653d6409b929d554.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/654b50568a4f83a1.json b/allure-report/data/test-cases/654b50568a4f83a1.json deleted file mode 100644 index ec1a358eb62..00000000000 --- a/allure-report/data/test-cases/654b50568a4f83a1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"654b50568a4f83a1","name":"All chars are in mixed case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_mixed","historyId":"d4bb68fb8c0e59fc03fed525cca43eb5","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in mixed case\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1732764220200,"stop":1732764220200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Help the bookseller !"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"65519c1899e60621.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/656902c8b3d6796a.json b/allure-report/data/test-cases/656902c8b3d6796a.json deleted file mode 100644 index f1f2bd6d935..00000000000 --- a/allure-report/data/test-cases/656902c8b3d6796a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"656902c8b3d6796a","name":"Testing 'count_sheeps' function: mixed list","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_mixed_list","historyId":"1b4dd61e36f8ec4ee2f83635d4e16e21","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c74dda443bb93e16","name":"stdout","source":"c74dda443bb93e16.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Array to HTML table"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"65c57bdf9fea8094.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/65cae0d4eb0f95b8.json b/allure-report/data/test-cases/65cae0d4eb0f95b8.json new file mode 100644 index 00000000000..b689122ac8d --- /dev/null +++ b/allure-report/data/test-cases/65cae0d4eb0f95b8.json @@ -0,0 +1 @@ +{"uid":"65cae0d4eb0f95b8","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194667,"stop":1732428194667,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194668,"stop":1732428194668,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"65cae0d4eb0f95b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6612fa568c338bff.json b/allure-report/data/test-cases/6612fa568c338bff.json new file mode 100644 index 00000000000..a98a0d70fa2 --- /dev/null +++ b/allure-report/data/test-cases/6612fa568c338bff.json @@ -0,0 +1 @@ +{"uid":"6612fa568c338bff","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6612fa568c338bff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/66511dda8143933e.json b/allure-report/data/test-cases/66511dda8143933e.json deleted file mode 100644 index 49c5254cd05..00000000000 --- a/allure-report/data/test-cases/66511dda8143933e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"66511dda8143933e","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"70a62533038d97f8","name":"stdout","source":"70a62533038d97f8.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Help the bookseller !"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9835bf28bd7241b2","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"66511dda8143933e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/66b2d8dadf3898.json b/allure-report/data/test-cases/66b2d8dadf3898.json new file mode 100644 index 00000000000..0c76952954c --- /dev/null +++ b/allure-report/data/test-cases/66b2d8dadf3898.json @@ -0,0 +1 @@ +{"uid":"66b2d8dadf3898","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"description":"\n Testing check_root function with various test inputs\n\n A function which takes numbers separated by commas\n in string format and returns the number which is a\n perfect square and the square root of that number.\n\n If string contains other characters than number or\n it has more or less than 4 numbers separated by comma\n function returns \"incorrect input\".\n\n If string contains 4 numbers but not consecutive it\n returns \"not consecutive\".\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ce9018a625502a4f","name":"stdout","source":"ce9018a625502a4f.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c2e82f2f4bdc38ce","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"66f1b8d1e5ed1dbe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6722ace1ab285b1e.json b/allure-report/data/test-cases/6722ace1ab285b1e.json new file mode 100644 index 00000000000..03efc47277e --- /dev/null +++ b/allure-report/data/test-cases/6722ace1ab285b1e.json @@ -0,0 +1 @@ +{"uid":"6722ace1ab285b1e","name":"Testing 'has_subpattern' (part 2) function","fullName":"kyu_6.string_subpattern_recognition_2.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"3086879b276d25b4dd0f45ada5d9f20b","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"description":"\n Verify that 'has_subpattern' function to returns\n either true/True or false/False if a string can be\n seen as the repetition of a simpler/shorter subpattern or not.\n\n 1. if a subpattern has been used, it will be repeated\n at least twice, meaning the subpattern has to be\n shorter than the original string;\n\n 2. the strings you will be given might or might not\n be created repeating a given subpattern, then\n shuffling the result.\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ae9de108d4c0920c","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1}},{"uid":"65cae0d4eb0f95b8","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1}},{"uid":"97d66dc06144a438","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"3d6d6f8c83d1b77","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ea77ab4395e92566","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1}},{"uid":"1532fae746d0bb3a","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1}},{"uid":"2c78d4954ac14f9e","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"93b3042e12ae0dc2","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"67535419d885cbd9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67590949db6da2ee.json b/allure-report/data/test-cases/67590949db6da2ee.json new file mode 100644 index 00000000000..59ec31874f0 --- /dev/null +++ b/allure-report/data/test-cases/67590949db6da2ee.json @@ -0,0 +1 @@ +{"uid":"67590949db6da2ee","name":"Testing the 'find_missing_number' function","fullName":"kyu_6.number_zoo_patrol.test_find_missing_number.FindMissingNumberTestCase#test_find_missing_number","historyId":"ec5359964a6a6bc7051957eec5d9455d","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"description":"\n Test a function that should take a shuffled list of unique numbers\n from 1 to n with one element missing (which can be any\n number including n). Should return this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that should take a shuffled list of unique numbers\n from 1 to n with one element missing (which can be any\n number including n). Should return this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"65be7c61ca459627","name":"stdout","source":"65be7c61ca459627.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PERFORMANCE"},{"name":"story","value":"Number Zoo Patrol"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"67590949db6da2ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/67660b7a0592cf4d.json b/allure-report/data/test-cases/67660b7a0592cf4d.json new file mode 100644 index 00000000000..228e86608d0 --- /dev/null +++ b/allure-report/data/test-cases/67660b7a0592cf4d.json @@ -0,0 +1 @@ +{"uid":"67660b7a0592cf4d","name":"Testing 'count_sheeps' function: mixed list","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_mixed_list","historyId":"1b4dd61e36f8ec4ee2f83635d4e16e21","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"14eb68b01bad174e","name":"stdout","source":"14eb68b01bad174e.txt","type":"text/plain","size":222}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"Algorithms"},{"name":"tag","value":"Strings"},{"name":"tag","value":"Logic"},{"name":"story","value":"Coloured Triangles"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ed9cfa6ba87dba0e","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"9fa9266ff3a1c464","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"280a7287fd39d5a9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"f80f9bf6821c7c25","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"68fbe283acac1b6a.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/690df5b9e2e97d3.json b/allure-report/data/test-cases/690df5b9e2e97d3.json
new file mode 100644
index 00000000000..3809f9d4213
--- /dev/null
+++ b/allure-report/data/test-cases/690df5b9e2e97d3.json
@@ -0,0 +1 @@
+{"uid":"690df5b9e2e97d3","name":"Testing 'sum_triangular_numbers' with zero","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_zero","historyId":"fc1061f17dd61adf726ad7c2bb23539c","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1732428194553,"stop":1732428194553,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"691c776616074a7a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/694927049ad61cd3.json b/allure-report/data/test-cases/694927049ad61cd3.json new file mode 100644 index 00000000000..311a4f438fa --- /dev/null +++ b/allure-report/data/test-cases/694927049ad61cd3.json @@ -0,0 +1 @@ +{"uid":"694927049ad61cd3","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732764220480,"stop":1732764220480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"694927049ad61cd3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/694d122063aa9b02.json b/allure-report/data/test-cases/694d122063aa9b02.json new file mode 100644 index 00000000000..700b3092504 --- /dev/null +++ b/allure-report/data/test-cases/694d122063aa9b02.json @@ -0,0 +1 @@ +{"uid":"694d122063aa9b02","name":"Testing row_sum_odd_numbers function","fullName":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers.OddRowTestCase#test_row_sum_odd_numbers","historyId":"b85aee9ae2ee06fc56de8481df862c73","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732764220706,"stop":1732764220706,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Sum of odd numbers"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"feature","value":"Math"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"694d122063aa9b02.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6959c64cdad7a79a.json b/allure-report/data/test-cases/6959c64cdad7a79a.json new file mode 100644 index 00000000000..66d47dcd483 --- /dev/null +++ b/allure-report/data/test-cases/6959c64cdad7a79a.json @@ -0,0 +1 @@ +{"uid":"6959c64cdad7a79a","name":"Wolf at the end of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_end","historyId":"e15f1973b9fdb38f6fac61e3b46f93cc","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"description":"\n If the wolf is not the closest animal to you,\n return \"Oi! Sheep number N! You are about to be eaten by a wolf!\"\n where N is the sheep's position in the queue.\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1732764221363,"stop":1732764221363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732764221363,"stop":1732764221363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"69bff1baf8829aa6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69c302e5122b751d.json b/allure-report/data/test-cases/69c302e5122b751d.json new file mode 100644 index 00000000000..323b7962b10 --- /dev/null +++ b/allure-report/data/test-cases/69c302e5122b751d.json @@ -0,0 +1 @@ +{"uid":"69c302e5122b751d","name":"Testing toJadenCase function (positive)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_positive","historyId":"7c48f5c6aa887d1bc76d081b028cf7cf","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"Sum of odd numbers"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"694d122063aa9b02","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0}},{"uid":"233e934352e9feff","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0}},{"uid":"249dabf58e93eece","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"bfe3079800be8e80","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"980af150a499b4e9","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0}},{"uid":"419686fbcf063822","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0}},{"uid":"9a325845218dd6ae","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"d837297408a13c1e","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"69f67038b11a4861.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/69f91e5f44fcbcaa.json b/allure-report/data/test-cases/69f91e5f44fcbcaa.json deleted file mode 100644 index 4cf80d217ec..00000000000 --- a/allure-report/data/test-cases/69f91e5f44fcbcaa.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"69f91e5f44fcbcaa","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"description":"\n Testing is_palindrome function\n with various test inputs\n\n The function should check if a\n given string (case insensitive)\n is a palindrome.\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d20f4b2271cbc6fa","name":"stdout","source":"d20f4b2271cbc6fa.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Who likes it?"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"6af4bd9ac0e81498.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6af8370630444180.json b/allure-report/data/test-cases/6af8370630444180.json deleted file mode 100644 index 99d73a0440f..00000000000 --- a/allure-report/data/test-cases/6af8370630444180.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6af8370630444180","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Testing using basic test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Diophantine Equation"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc74ffe2a6fa764b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218838,"stop":1732764218838,"duration":0}},{"uid":"ebf90564de7fa557","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194185,"stop":1732428194185,"duration":0}},{"uid":"c6b40d117da688e8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"7c60279d383e9d8b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"bdd8b1b0bd82d5b1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218838,"stop":1732764218838,"duration":0}},{"uid":"a57a3497f4402b67","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194185,"stop":1732428194185,"duration":0}},{"uid":"d6d51bdb700f78e3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"ad08cb0fb6eef203","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"6c1e65f294db5f89.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/6c5d99461aa2603.json b/allure-report/data/test-cases/6c5d99461aa2603.json
deleted file mode 100644
index c9a6abf5020..00000000000
--- a/allure-report/data/test-cases/6c5d99461aa2603.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"6c5d99461aa2603","name":"Testing invite_more_women function (negative)","fullName":"kyu_7.simple_fun_152.test_invite_more_women.InviteMoreWomenTestCase#test_invite_more_women_negative","historyId":"439816a19ff5fc7179df296b3e238bad","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (negative)\n :return:\n ","descriptionHtml":"Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"feature","value":"Validation"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4928db7c01341cec","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0}},{"uid":"a4aa1c9fe84c9cc9","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1}},{"uid":"83385fc467b4a8e5","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"cb1f986a714e3e2e","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9d2b852ea94aa88a","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0}},{"uid":"91c9b008755c7351","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1}},{"uid":"d6e4ebd44034ff08","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"af3c309699fc2b8b","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}}]},"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"6c8559b634a76bd8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6cc55bf9ac4c61ba.json b/allure-report/data/test-cases/6cc55bf9ac4c61ba.json deleted file mode 100644 index 81e8903f2e0..00000000000 --- a/allure-report/data/test-cases/6cc55bf9ac4c61ba.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6cc55bf9ac4c61ba","name":"Testing first_non_repeating_letter function","fullName":"kyu_5.first_non_repeating_character.test_first_non_repeating_letter.FirstNonRepeatingLetterTestCase#test_first_non_repeating_letter","historyId":"cff7d7f7b55b35458669cd92cb129d06","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"description":"\n Testing a function named first_non_repeating_letter\n that takes a string input, and returns the first character\n that is not repeated anywhere in the string.\n\n For example, if given the input 'stress', the function\n should return 't', since the letter t only occurs once\n in the string, and occurs first in the string.\n\n As an added challenge, upper- and lowercase letters are\n considered the same character, but the function should\n return the correct case for the initial letter. For example,\n the input 'sTreSS' should return 'T'.\n\n If a string contains all repeating characters, it should\n return an empty string (\"\") or None -- see sample tests.\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a0d3807a4788c278","name":"stdout","source":"a0d3807a4788c278.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Casino chips"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"6cc7dd91ca56d191.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6ce4bba2ff4664c2.json b/allure-report/data/test-cases/6ce4bba2ff4664c2.json deleted file mode 100644 index f65649123e4..00000000000 --- a/allure-report/data/test-cases/6ce4bba2ff4664c2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"6ce4bba2ff4664c2","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"42d91b41703125e1","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"6ce4bba2ff4664c2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6cece42c72540e7a.json b/allure-report/data/test-cases/6cece42c72540e7a.json new file mode 100644 index 00000000000..afcc3366b39 --- /dev/null +++ b/allure-report/data/test-cases/6cece42c72540e7a.json @@ -0,0 +1 @@ +{"uid":"6cece42c72540e7a","name":"Testing check_exam function","fullName":"kyu_8.check_the_exam.test_check_exam.CheckExamTestCase#test_check_exam","historyId":"ed6c1e5f0eb38874fc66b7fa53f68e12","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"description":"\n Testing check_exam function\n\n The function should return the score\n for this array of answers, giving +4\n for each correct answer, -1 for each\n incorrect answer, and +0 for each blank\n answer(empty string).\n\n :return:\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8f4bf05879c8645b","name":"stdout","source":"8f4bf05879c8645b.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"6fa9bd2fff491ec7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/6fb97aca94ac90f1.json b/allure-report/data/test-cases/6fb97aca94ac90f1.json new file mode 100644 index 00000000000..976acb49861 --- /dev/null +++ b/allure-report/data/test-cases/6fb97aca94ac90f1.json @@ -0,0 +1 @@ +{"uid":"6fb97aca94ac90f1","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"description":"\n Testing 'count_sheeps' function\n Consider an array of sheep where some sheep\n may be missing from their place.\n We need a function that counts the\n number of sheep present in the array\n (true means present).\n\n :return:\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permutations"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"PERMUTATIONS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e4e2296a825eac3f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"6fbcaa806475fb37.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/7019f73b053e7ae6.json b/allure-report/data/test-cases/7019f73b053e7ae6.json
new file mode 100644
index 00000000000..57a1c6d7647
--- /dev/null
+++ b/allure-report/data/test-cases/7019f73b053e7ae6.json
@@ -0,0 +1 @@
+{"uid":"7019f73b053e7ae6","name":"Testing 'letter_count' function","fullName":"kyu_6.count_letters_in_string.test_count_letters_in_string.CountLettersInStringTestCase#test_count_letters_in_string","historyId":"04bb543ec741bd163e341a33a1623692","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"description":"\n Testing 'letter_count' function\n :return:\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc class\n\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"37cb2e943dd3d9fa","name":"stdout","source":"37cb2e943dd3d9fa.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Proficient"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"OPERATORS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"epic","value":"2 kyu"},{"name":"tag","value":"PARSING STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"705df14002b81e6d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/705f3a50d2317813.json b/allure-report/data/test-cases/705f3a50d2317813.json new file mode 100644 index 00000000000..e84395c6437 --- /dev/null +++ b/allure-report/data/test-cases/705f3a50d2317813.json @@ -0,0 +1 @@ +{"uid":"705f3a50d2317813","name":"Testing make_upper_case function","fullName":"kyu_8.make_upper_case.test_make_upper_case.MakeUpperCaseTestCase#test_make_upper_case","historyId":"9fe496d12a67f53b3208a0b823f2d8c3","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c59a8e0803dd0f2a","name":"stdout","source":"c59a8e0803dd0f2a.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"7086e3f0d0497484.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/70a5d60b5abb1f3f.json b/allure-report/data/test-cases/70a5d60b5abb1f3f.json new file mode 100644 index 00000000000..327d1260c31 --- /dev/null +++ b/allure-report/data/test-cases/70a5d60b5abb1f3f.json @@ -0,0 +1 @@ +{"uid":"70a5d60b5abb1f3f","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"tag","value":"MEMOIZATION"},{"name":"story","value":"Sum of Pairs"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fb3c794e959e544","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0}},{"uid":"9b26a570961ab395","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0}},{"uid":"eeeab72dd7b98f53","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"623e1f94af0b0a8a","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ef2b00c02db84592","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0}},{"uid":"607f84fe70696eb5","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0}},{"uid":"2965d2d3db0ea08e","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"be5a8376fdcba717","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"72c2edc2055d0da7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73191ac2ec23a302.json b/allure-report/data/test-cases/73191ac2ec23a302.json new file mode 100644 index 00000000000..df5b1e4da58 --- /dev/null +++ b/allure-report/data/test-cases/73191ac2ec23a302.json @@ -0,0 +1 @@ +{"uid":"73191ac2ec23a302","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1732428194156,"stop":1732428194156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Control Flow"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"73191ac2ec23a302.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/732bf4c64788dac.json b/allure-report/data/test-cases/732bf4c64788dac.json new file mode 100644 index 00000000000..65a9916cfc2 --- /dev/null +++ b/allure-report/data/test-cases/732bf4c64788dac.json @@ -0,0 +1 @@ +{"uid":"732bf4c64788dac","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"feature","value":"Math"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"732bf4c64788dac.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/733b2334645f5c42.json b/allure-report/data/test-cases/733b2334645f5c42.json new file mode 100644 index 00000000000..3e9cb2b9999 --- /dev/null +++ b/allure-report/data/test-cases/733b2334645f5c42.json @@ -0,0 +1 @@ +{"uid":"733b2334645f5c42","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Performance"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Row of the odd triangle"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"90548ade83f4ad3f","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0}},{"uid":"8c263832e40387fc","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0}},{"uid":"529f7f81e90deb17","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"a1726ce9583568d0","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"416bb0c0ac58f7b6","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0}},{"uid":"59b1922c33f3ac65","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0}},{"uid":"9b82a842fdc9b867","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"4c3877c30e625752","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}}]},"tags":["PERFORMANCE","ALGORITHMS"]},"source":"733b2334645f5c42.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73654e59fd10df4d.json b/allure-report/data/test-cases/73654e59fd10df4d.json new file mode 100644 index 00000000000..3970ed4369a --- /dev/null +++ b/allure-report/data/test-cases/73654e59fd10df4d.json @@ -0,0 +1 @@ +{"uid":"73654e59fd10df4d","name":"Testing zeros function","fullName":"kyu_5.number_of_trailing_zeros_of_n.test_zeros.ZerosTestCase#test_zeros","historyId":"bf37412e0e610d07d951e5fde674ec97","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"description":"\n Testing 'zeros' program that should calculate the number\n of trailing zeros in a factorial of a given number.\n :return: None\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"PARSING"},{"name":"story","value":"Count IP Addresses"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"73b957e217c05b3b.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/73ceae1f03ba10a4.json b/allure-report/data/test-cases/73ceae1f03ba10a4.json
new file mode 100644
index 00000000000..f4ac65cc3f8
--- /dev/null
+++ b/allure-report/data/test-cases/73ceae1f03ba10a4.json
@@ -0,0 +1 @@
+{"uid":"73ceae1f03ba10a4","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"description":"\n Your task is to verify that 'order' function\n sorts a given string by following rules:\n\n 1. Each word in the string will contain a single number.\n This number is the position the word should have in\n the result.\n\n 2. Note: Numbers can be from 1 to 9. So 1 will be the\n first word (not 0).\n\n 3. If the input string is empty, return an empty string.\n The words in the input String will only contain valid\n consecutive numbers.\n\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b8231a3e84d54eef","name":"stdout","source":"b8231a3e84d54eef.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"ce50dc4c6a1469d8","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"73d92f8f0c07772d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73e2d6b3532a4935.json b/allure-report/data/test-cases/73e2d6b3532a4935.json deleted file mode 100644 index 4b33f65c8e1..00000000000 --- a/allure-report/data/test-cases/73e2d6b3532a4935.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"73e2d6b3532a4935","name":"Negative test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_negative","historyId":"4a2df53975623c10d30ec1c6932ba04a","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"80387d9cf50add05","name":"stdout","source":"80387d9cf50add05.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing gen_primes util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"73e2d6b3532a4935.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/73ef94971e1ebc98.json b/allure-report/data/test-cases/73ef94971e1ebc98.json new file mode 100644 index 00000000000..9cf4e3369bc --- /dev/null +++ b/allure-report/data/test-cases/73ef94971e1ebc98.json @@ -0,0 +1 @@ +{"uid":"73ef94971e1ebc98","name":"Testing first_non_repeated function with various inputs","fullName":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated.FirstNonRepeatedTestCase#test_first_non_repeated","historyId":"9398abf0c9f75b70331fc87dcc2b8a7f","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1732764218785,"stop":1732764218785,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"OOP"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"epic","value":"4 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"74d08353b69572cc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/75b2a36530573b63.json b/allure-report/data/test-cases/75b2a36530573b63.json new file mode 100644 index 00000000000..fa770599c7e --- /dev/null +++ b/allure-report/data/test-cases/75b2a36530573b63.json @@ -0,0 +1 @@ +{"uid":"75b2a36530573b63","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1732428194123,"stop":1732428194123,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1732428194124,"stop":1732428194124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1732428194125,"stop":1732428194125,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sum of Intervals"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"AGGREGATIONS"},{"name":"feature","value":"Aggregations"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"INTEGERS"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"761ca73c34549675.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/763ac19ad87ac3cd.json b/allure-report/data/test-cases/763ac19ad87ac3cd.json new file mode 100644 index 00000000000..ba7f519dc31 --- /dev/null +++ b/allure-report/data/test-cases/763ac19ad87ac3cd.json @@ -0,0 +1 @@ +{"uid":"763ac19ad87ac3cd","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1732428194022,"stop":1732428194022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194023,"stop":1732428194023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194023,"stop":1732428194023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194023,"stop":1732428194023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194023,"stop":1732428194023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1732428194025,"stop":1732428194025,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1732428194026,"stop":1732428194026,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Strings Mix"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"76a91c6ac0b40085.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/76e193dcfd9d956a.json b/allure-report/data/test-cases/76e193dcfd9d956a.json new file mode 100644 index 00000000000..244aef4769d --- /dev/null +++ b/allure-report/data/test-cases/76e193dcfd9d956a.json @@ -0,0 +1 @@ +{"uid":"76e193dcfd9d956a","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1732764220225,"stop":1732764220225,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that should take a shuffled list of\n unique numbers from 1 to n with one element missing\n (which can be any number including n). Should return\n this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1732764220228,"stop":1732764220228,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Number Zoo Patrol"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"PERFORMANCE"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"77a4cf3d728ec302.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77d417f099b71c46.json b/allure-report/data/test-cases/77d417f099b71c46.json new file mode 100644 index 00000000000..12c5fc6c772 --- /dev/null +++ b/allure-report/data/test-cases/77d417f099b71c46.json @@ -0,0 +1 @@ +{"uid":"77d417f099b71c46","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"description":"\n Testing using medium test data\n :return:\n ","descriptionHtml":" Testing using medium test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 46, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"77d417f099b71c46.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/77d55c76ce916d94.json b/allure-report/data/test-cases/77d55c76ce916d94.json
deleted file mode 100644
index bb926ca746f..00000000000
--- a/allure-report/data/test-cases/77d55c76ce916d94.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"77d55c76ce916d94","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b9d1131297f0da2f","name":"stdout","source":"b9d1131297f0da2f.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Strings Mix"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"77d55c76ce916d94.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/77e7a047aea456b4.json b/allure-report/data/test-cases/77e7a047aea456b4.json deleted file mode 100644 index e754f16be2e..00000000000 --- a/allure-report/data/test-cases/77e7a047aea456b4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"77e7a047aea456b4","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"93af2f644721a146","name":"stdout","source":"93af2f644721a146.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ARRAY"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"77e7a047aea456b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/781079de643a720d.json b/allure-report/data/test-cases/781079de643a720d.json deleted file mode 100644 index 6968f7f8da7..00000000000 --- a/allure-report/data/test-cases/781079de643a720d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"781079de643a720d","name":"Testing make_upper_case function","fullName":"kyu_8.make_upper_case.test_make_upper_case.MakeUpperCaseTestCase#test_make_upper_case","historyId":"9fe496d12a67f53b3208a0b823f2d8c3","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"Should return True for empty strings.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"Should return True for empty strings.
","status":"passed","steps":[{"name":"Enter empty test string and verifythat the function returns True.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Valid Parentheses"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/6411b91a5e71b915d237332d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},"source":"78aec59881bd461e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78b238490a0d0c98.json b/allure-report/data/test-cases/78b238490a0d0c98.json new file mode 100644 index 00000000000..0ea1d35af35 --- /dev/null +++ b/allure-report/data/test-cases/78b238490a0d0c98.json @@ -0,0 +1 @@ +{"uid":"78b238490a0d0c98","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c5bd55033a46cbd6","name":"stdout","source":"c5bd55033a46cbd6.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRING"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Range Extraction"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"78b238490a0d0c98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/78e4d411e3c9974d.json b/allure-report/data/test-cases/78e4d411e3c9974d.json deleted file mode 100644 index 4237fafe32c..00000000000 --- a/allure-report/data/test-cases/78e4d411e3c9974d.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"78e4d411e3c9974d","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"792ce345a0c4a9e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7940a8ba615e27f7.json b/allure-report/data/test-cases/7940a8ba615e27f7.json new file mode 100644 index 00000000000..1f091781342 --- /dev/null +++ b/allure-report/data/test-cases/7940a8ba615e27f7.json @@ -0,0 +1 @@ +{"uid":"7940a8ba615e27f7","name":"Testing string_to_array function","fullName":"kyu_8.convert_string_to_an_array.test_string_to_array.StringToArrayTestCase#test_string_to_array","historyId":"f51ecfb2c4460f518b2155a78436a09d","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"description":"\n Testing string_to_array function.\n\n A function to split a string and\n convert it into an array of words.\n :return:\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7956391f1917fb4","name":"stdout","source":"e7956391f1917fb4.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Battleship field validator"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"GAME BOARDS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"79507cba518971f8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7954a467ea4b79e1.json b/allure-report/data/test-cases/7954a467ea4b79e1.json deleted file mode 100644 index 9dfc5d48256..00000000000 --- a/allure-report/data/test-cases/7954a467ea4b79e1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7954a467ea4b79e1","name":"Testing count_letters_and_digits function","fullName":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits.CalculateTestCase#test_calculate","historyId":"a9a9cea93ff72e09882edc4b831ce933","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"16493fa2e59b881f","name":"stdout","source":"16493fa2e59b881f.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7954a467ea4b79e1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/79e39b6957e2fa23.json b/allure-report/data/test-cases/79e39b6957e2fa23.json deleted file mode 100644 index ab35659d00e..00000000000 --- a/allure-report/data/test-cases/79e39b6957e2fa23.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"79e39b6957e2fa23","name":"All chars are in lower case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_lower","historyId":"124f2add699f3e2269c311afae219c6e","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in lower case\n :return:\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Lists"},{"name":"epic","value":"3 kyu"},{"name":"story","value":"Make a spiral"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"250def6bd45574c1","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1}},{"uid":"e032c4a87bedaab7","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1}},{"uid":"4736a066b330a3e5","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"50aed2563bca9cb0","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"43a8b37a1715c915","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1}},{"uid":"8dde6031964dc28f","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1}},{"uid":"b1d54b76165521a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"164087ecc666d9a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"7aa3fbfc8218c54e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7abec7f9960933cc.json b/allure-report/data/test-cases/7abec7f9960933cc.json new file mode 100644 index 00000000000..81ded6fca58 --- /dev/null +++ b/allure-report/data/test-cases/7abec7f9960933cc.json @@ -0,0 +1 @@ +{"uid":"7abec7f9960933cc","name":"test_starting_position_from_positives","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_positives","historyId":"8a1027b0cee356a496b84c6b832d107b","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on positive grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"7abec7f9960933cc.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/7b5c67e400b6b0a0.json b/allure-report/data/test-cases/7b5c67e400b6b0a0.json
new file mode 100644
index 00000000000..1cfc6500cbf
--- /dev/null
+++ b/allure-report/data/test-cases/7b5c67e400b6b0a0.json
@@ -0,0 +1 @@
+{"uid":"7b5c67e400b6b0a0","name":"Testing top_3_words function","fullName":"kyu_4.most_frequently_used_words.test_top_3_words.Top3WordsTestCase#test_top_3_words","historyId":"749ee6e9278a75fb77637153b8003619","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4de55b4ae1f39108","name":"stdout","source":"4de55b4ae1f39108.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"RANKING"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FILTERING"},{"name":"story","value":"Most frequently used words in a text"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"7b5c67e400b6b0a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7b7000404fe21186.json b/allure-report/data/test-cases/7b7000404fe21186.json new file mode 100644 index 00000000000..eb83f4d7842 --- /dev/null +++ b/allure-report/data/test-cases/7b7000404fe21186.json @@ -0,0 +1 @@ +{"uid":"7b7000404fe21186","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"description":"\n Testing 'feast' function with various test inputs\n\n Testing a function feast that takes the animal's\n name and dish as arguments and returns true or\n false to indicate whether the beast is allowed\n to bring the dish to the feast.\n\n Assume that beast and dish are always lowercase strings,\n and that each has at least two letters. beast and dish\n may contain hyphens and spaces, but these will not appear\n at the beginning or end of the string. They will not\n contain numerals.\n\n There is just one rule: the dish must start and end with\n the same letters as the animal's name. For example, the\n great blue heron is bringing garlic naan and the chickadee\n is bringing chocolate cake.\n :return:\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"14a8f582bcfd592e","name":"stdout","source":"14a8f582bcfd592e.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ARRAY"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"7c87151d683c2aad.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7cacdad83c7f5f10.json b/allure-report/data/test-cases/7cacdad83c7f5f10.json new file mode 100644 index 00000000000..cf780ca5d8b --- /dev/null +++ b/allure-report/data/test-cases/7cacdad83c7f5f10.json @@ -0,0 +1 @@ +{"uid":"7cacdad83c7f5f10","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6c8ba92b05ceb5be","name":"stdout","source":"6c8ba92b05ceb5be.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7cacdad83c7f5f10.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7ce67f10ab4c86ee.json b/allure-report/data/test-cases/7ce67f10ab4c86ee.json new file mode 100644 index 00000000000..ca2fe146e1e --- /dev/null +++ b/allure-report/data/test-cases/7ce67f10ab4c86ee.json @@ -0,0 +1 @@ +{"uid":"7ce67f10ab4c86ee","name":"Negative non consecutive number should be returned","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_negative","historyId":"f9c1f10fe995fd827dbc67efd6c689cb","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"7d152505fce8fc34.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d1621a20d6f8fe7.json b/allure-report/data/test-cases/7d1621a20d6f8fe7.json deleted file mode 100644 index 18cb64c21fd..00000000000 --- a/allure-report/data/test-cases/7d1621a20d6f8fe7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7d1621a20d6f8fe7","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Classes"},{"name":"story","value":"Potion Class 101"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"46081367fb92978f","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0}}],"categories":[],"tags":["ALGORITHMS"]},"source":"7d1621a20d6f8fe7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7d5b1a2ffe0a970a.json b/allure-report/data/test-cases/7d5b1a2ffe0a970a.json new file mode 100644 index 00000000000..d24aaf50e31 --- /dev/null +++ b/allure-report/data/test-cases/7d5b1a2ffe0a970a.json @@ -0,0 +1 @@ +{"uid":"7d5b1a2ffe0a970a","name":"Testing toJadenCase function (negative)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_negative","historyId":"3a2cad5dab684132d1f8974f9a6b5c75","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"description":"\n Simple negative test\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732428195732,"stop":1732428195732,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1732428195733,"stop":1732428195733,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1732428195733,"stop":1732428195733,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1732428195733,"stop":1732428195733,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195734,"stop":1732428195734,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7de3e61f9ee174a3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7de5228b774a8541.json b/allure-report/data/test-cases/7de5228b774a8541.json new file mode 100644 index 00000000000..e6f5b91151b --- /dev/null +++ b/allure-report/data/test-cases/7de5228b774a8541.json @@ -0,0 +1 @@ +{"uid":"7de5228b774a8541","name":"Testing 'sum_triangular_numbers' with negative numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_negative_numbers","historyId":"4e553d5e3ff5fc5c21a746a843af96e5","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"70c3d96b077c7c36","name":"stdout","source":"70c3d96b077c7c36.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"828252a14a7968ec","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"7e0e76f32ac7ce4e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7e7534020c406c41.json b/allure-report/data/test-cases/7e7534020c406c41.json new file mode 100644 index 00000000000..8259fa346f2 --- /dev/null +++ b/allure-report/data/test-cases/7e7534020c406c41.json @@ -0,0 +1 @@ +{"uid":"7e7534020c406c41","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"description":"\n Testing swap_values function\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests").\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Find the smallest"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"6327808bac6df1db","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218915,"stop":1732764218915,"duration":0}},{"uid":"bd6b8dc125a7712d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194259,"stop":1732428194259,"duration":0}},{"uid":"c4045fa90cc64964","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"35bd830710547eb9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472765,"stop":1724733472765,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"9164bf2c06bf8752","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218915,"stop":1732764218915,"duration":0}},{"uid":"c58cb7ae6e5a9993","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194259,"stop":1732428194259,"duration":0}},{"uid":"c37dfc82a096ec09","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"257a5ad111bd69a7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}}]},"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"7ea8a8dc382128a4.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/7edeace92746910e.json b/allure-report/data/test-cases/7edeace92746910e.json
new file mode 100644
index 00000000000..185d1013f5d
--- /dev/null
+++ b/allure-report/data/test-cases/7edeace92746910e.json
@@ -0,0 +1 @@
+{"uid":"7edeace92746910e","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_line function\n :return:\n ","descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1732428195781,"stop":1732428195781,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"7edeace92746910e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f10132389bd0afd.json b/allure-report/data/test-cases/7f10132389bd0afd.json new file mode 100644 index 00000000000..c589d4fc2a3 --- /dev/null +++ b/allure-report/data/test-cases/7f10132389bd0afd.json @@ -0,0 +1 @@ +{"uid":"7f10132389bd0afd","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_true","historyId":"c8ef830d4279bee02e53bf3a04349c35","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return true if it is a factor.\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"817385884ec20713","name":"stdout","source":"817385884ec20713.txt","type":"text/plain","size":1380}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ASCII"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Character Encodings"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BINARY"},{"name":"tag","value":"FORMATS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"7f106ecb68257734.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f23a2b3d247ad31.json b/allure-report/data/test-cases/7f23a2b3d247ad31.json deleted file mode 100644 index fcbbffa436f..00000000000 --- a/allure-report/data/test-cases/7f23a2b3d247ad31.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7f23a2b3d247ad31","name":"Testing hoop_count function (positive test case)","fullName":"kyu_8.keep_up_the_hoop.test_hoop_count.HoopCountTestCase#test_hoop_count_positive","historyId":"4110170ab332498939ad9f2d0f38cf97","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"description":"\n Testing hoop_count function\n\n Alex just got a new hula hoop, he loves it but feels\n discouraged because his little brother is better than him\n\n Write a program where Alex can input (n) how many times\n the hoop goes round and it will return him an encouraging message\n\n - If Alex gets 10 or more hoops, return the string \"Great, now move on to tricks\".\n - If he doesn't get 10 hoops, return the string \"Keep at it until you get it\".\n\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"52487ab63cfc7fc2","name":"stdout","source":"52487ab63cfc7fc2.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Diagonal"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f1607dce833287a","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671}}],"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"7f2ec06c200d3086.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f2fca7b02951542.json b/allure-report/data/test-cases/7f2fca7b02951542.json new file mode 100644 index 00000000000..509db426ac8 --- /dev/null +++ b/allure-report/data/test-cases/7f2fca7b02951542.json @@ -0,0 +1 @@ +{"uid":"7f2fca7b02951542","name":"Two smallest numbers in the start of the list","fullName":"kyu_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers.SumTwoSmallestNumbersTestCase#test_sum_two_smallest_numbers","historyId":"429c2bf738c7d46e53c9a2e5226d6649","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"description":"\n Test sum_two_smallest_numbers function\n The function should return the sum of\n the two lowest positive numbers\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f061bc52b29fdec3","name":"stdout","source":"f061bc52b29fdec3.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"bbfb47c5ac3f243c","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"7f4f9e94ec6d4f1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7f6d50d19e0f3de2.json b/allure-report/data/test-cases/7f6d50d19e0f3de2.json new file mode 100644 index 00000000000..85edcc9df94 --- /dev/null +++ b/allure-report/data/test-cases/7f6d50d19e0f3de2.json @@ -0,0 +1 @@ +{"uid":"7f6d50d19e0f3de2","name":"a and b are equal","fullName":"kyu_7.disemvowel_trolls.test_disemvowel_trolls.DisemvowelTestCase#test_disemvowel","historyId":"4171a558a2bea15b5a0546d36c9a1c63","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"description":"\n The string \"This website is for losers LOL!\"\n should become \"Ths wbst s fr lsrs LL!\"\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b965bcb2e6dc29da","name":"stdout","source":"b965bcb2e6dc29da.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ffd2584e60c021f7","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"7f890ca68cdfc481.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7fad3735c185529a.json b/allure-report/data/test-cases/7fad3735c185529a.json deleted file mode 100644 index bd409e8fb1c..00000000000 --- a/allure-report/data/test-cases/7fad3735c185529a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"7fad3735c185529a","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7e845202c63af573","name":"stdout","source":"7e845202c63af573.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"7fad3735c185529a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7fae1c49f318568.json b/allure-report/data/test-cases/7fae1c49f318568.json new file mode 100644 index 00000000000..e4b30d528db --- /dev/null +++ b/allure-report/data/test-cases/7fae1c49f318568.json @@ -0,0 +1 @@ +{"uid":"7fae1c49f318568","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"7fae1c49f318568.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/7fd83f8828bfb391.json b/allure-report/data/test-cases/7fd83f8828bfb391.json new file mode 100644 index 00000000000..f70a984e03c --- /dev/null +++ b/allure-report/data/test-cases/7fd83f8828bfb391.json @@ -0,0 +1 @@ +{"uid":"7fd83f8828bfb391","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"description":"\n Your task is to verify that 'order' function\n sorts a given string by following rules:\n\n 1. Each word in the string will contain a single number.\n This number is the position the word should have in\n the result.\n\n 2. Note: Numbers can be from 1 to 9. So 1 will be the\n first word (not 0).\n\n 3. If the input string is empty, return an empty string.\n The words in the input String will only contain valid\n consecutive numbers.\n\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Array.diff"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f06c10d847061aa8","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0}},{"uid":"abfe637076f1879d","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0}},{"uid":"aee1417e53524250","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"da6f4b236162247c","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"354cda6601a7cded","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0}},{"uid":"2bfddef765c09569","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0}},{"uid":"dc29e000a4adcd25","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"f52a489cb0add672","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"80b7e762ad299367.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/80f4fc862b13c5c8.json b/allure-report/data/test-cases/80f4fc862b13c5c8.json new file mode 100644 index 00000000000..9b3a69cc714 --- /dev/null +++ b/allure-report/data/test-cases/80f4fc862b13c5c8.json @@ -0,0 +1 @@ +{"uid":"80f4fc862b13c5c8","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1732764218627,"stop":1732764218627,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"PARSING"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"FILTERING"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Most frequently used words in a text"},{"name":"tag","value":"RANKING"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"81d67983376326e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/81fc21ff964037a2.json b/allure-report/data/test-cases/81fc21ff964037a2.json new file mode 100644 index 00000000000..9073cba5b3b --- /dev/null +++ b/allure-report/data/test-cases/81fc21ff964037a2.json @@ -0,0 +1 @@ +{"uid":"81fc21ff964037a2","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1732764219301,"stop":1732764219301,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Factorial"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Color Choice"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"823872001ab9ba87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/823dff07664aaa4.json b/allure-report/data/test-cases/823dff07664aaa4.json new file mode 100644 index 00000000000..517b9fe266b --- /dev/null +++ b/allure-report/data/test-cases/823dff07664aaa4.json @@ -0,0 +1 @@ +{"uid":"823dff07664aaa4","name":"powers function should return an array of unique numbers","fullName":"kyu_7.sum_of_powers_of_2.test_sum_of_powers_of_2.SumOfPowerOfTwoTestCase#test_powers","historyId":"489e3070dc83756c411301400dd6e3c8","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"description":"\n The function powers takes a single parameter,\n the number n, and should return an array of\n unique numbers.\n :return:\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1732764218665,"stop":1732764218665,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Snail"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"824bfc7518105d49.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/828252a14a7968ec.json b/allure-report/data/test-cases/828252a14a7968ec.json deleted file mode 100644 index c77a7ac15b7..00000000000 --- a/allure-report/data/test-cases/828252a14a7968ec.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"828252a14a7968ec","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e25ec87c38eb56d7","name":"stdout","source":"e25ec87c38eb56d7.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"828252a14a7968ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/82ae018d43c04f85.json b/allure-report/data/test-cases/82ae018d43c04f85.json new file mode 100644 index 00000000000..75d2c8dca31 --- /dev/null +++ b/allure-report/data/test-cases/82ae018d43c04f85.json @@ -0,0 +1 @@ +{"uid":"82ae018d43c04f85","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"description":"\n Testing Line Safari functionality\n Negative test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"82ae018d43c04f85.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/82d90de1156cd48c.json b/allure-report/data/test-cases/82d90de1156cd48c.json
new file mode 100644
index 00000000000..0ef64fd9074
--- /dev/null
+++ b/allure-report/data/test-cases/82d90de1156cd48c.json
@@ -0,0 +1 @@
+{"uid":"82d90de1156cd48c","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"description":"\n Testing swap_values function\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"97d568438480d957","name":"stdout","source":"97d568438480d957.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"82e02fa0cc46fda7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8316509a5b8b5aee.json b/allure-report/data/test-cases/8316509a5b8b5aee.json deleted file mode 100644 index fdc1ee94173..00000000000 --- a/allure-report/data/test-cases/8316509a5b8b5aee.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8316509a5b8b5aee","name":"test_line_positive","fullName":"kyu_3.line_safari_is_that_a_line.test_line_positive.LinePositiveTestCase#test_line_positive","historyId":"0694e08a88ff80537fae0ce33871b5be","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"description":"\n Testing Line Safari functionality\n Positive test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"8316509a5b8b5aee.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/831a4a72cd312e40.json b/allure-report/data/test-cases/831a4a72cd312e40.json
deleted file mode 100644
index f2c55ff6c58..00000000000
--- a/allure-report/data/test-cases/831a4a72cd312e40.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"831a4a72cd312e40","name":"Testing string_to_array function","fullName":"kyu_8.convert_string_to_an_array.test_string_to_array.StringToArrayTestCase#test_string_to_array","historyId":"f51ecfb2c4460f518b2155a78436a09d","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"description":"\n Testing string_to_array function.\n\n A function to split a string and\n convert it into an array of words.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b26647644a9011f","name":"stdout","source":"6b26647644a9011f.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Validation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"83385fc467b4a8e5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83454665affcf957.json b/allure-report/data/test-cases/83454665affcf957.json deleted file mode 100644 index e4a33d5c675..00000000000 --- a/allure-report/data/test-cases/83454665affcf957.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"83454665affcf957","name":"Testing 'sum_triangular_numbers' with positive numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_positive_numbers","historyId":"135e62f837ca5fe30ddfd2ad875e089b","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d514a9b6a336ccd7","name":"stdout","source":"d514a9b6a336ccd7.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"83c9df798b4e44f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83da90e97e5349e6.json b/allure-report/data/test-cases/83da90e97e5349e6.json new file mode 100644 index 00000000000..75d45173334 --- /dev/null +++ b/allure-report/data/test-cases/83da90e97e5349e6.json @@ -0,0 +1 @@ +{"uid":"83da90e97e5349e6","name":"Testing sum_of_intervals function","fullName":"kyu_4.sum_of_intervals.test_sum_of_intervals.SumOfIntervalsTestCase#test_sum_of_intervals","historyId":"31852768c071e158fda7de0b172143f4","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e3476f63fad27664","name":"stdout","source":"e3476f63fad27664.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Intervals"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Aggregations"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"AGGREGATIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"83da90e97e5349e6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/83db549d27afd32b.json b/allure-report/data/test-cases/83db549d27afd32b.json new file mode 100644 index 00000000000..d1b0dc88ea0 --- /dev/null +++ b/allure-report/data/test-cases/83db549d27afd32b.json @@ -0,0 +1 @@ +{"uid":"83db549d27afd32b","name":"Testing men_from_boys function","fullName":"kyu_7.sort_out_the_men_from_boys.test_men_from_boys.MenFromBoysTestCase#test_men_from_boys","historyId":"94e7f25439d88c0d2dae964ef4a033cd","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"description":"\n Testing men_from_boys function with\n various test inputs\n\n Scenario\n Now that the competition gets tough it\n will Sort out the men from the boys .\n\n Men are the Even numbers and Boys are\n the odd !alt !alt\n\n Task\n Given an array/list [] of n integers ,\n Separate The even numbers from the odds ,\n or Separate the men from the boys !alt !alt\n\n Notes\n Return an array/list where Even numbers\n come first then odds.\n Since , Men are stronger than Boys ,\n Then Even numbers in ascending order\n While odds in descending.\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8333a44527f8bcd6","name":"stdout","source":"8333a44527f8bcd6.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"84d7e1eb21948129.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/84e5ce529aafcfa9.json b/allure-report/data/test-cases/84e5ce529aafcfa9.json new file mode 100644 index 00000000000..bc425828210 --- /dev/null +++ b/allure-report/data/test-cases/84e5ce529aafcfa9.json @@ -0,0 +1 @@ +{"uid":"84e5ce529aafcfa9","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"description":"\n Testing length function\n where head = None\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"name":"story","value":"Disease Spread"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"88b006bece2616b2","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6}},{"uid":"c1010dc09e66b779","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3}},{"uid":"4092d3473f63825","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"ab6068d2916c95e9","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"200b5f0b4ec790a3","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6}},{"uid":"5f6f3bc16b3488d6","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3}},{"uid":"c1e0648976f6a694","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"b3f7088fed8dedd7","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"8572ffe92ddcaa11.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/857509cc66fb3470.json b/allure-report/data/test-cases/857509cc66fb3470.json new file mode 100644 index 00000000000..2b95bbce04d --- /dev/null +++ b/allure-report/data/test-cases/857509cc66fb3470.json @@ -0,0 +1 @@ +{"uid":"857509cc66fb3470","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"description":"\n Testing gap function with various test inputs\n\n A binary gap within a positive number num is\n any sequence of consecutive zeros that is\n surrounded by ones at both ends in the binary\n representation of num.\n\n The gap function should return the length of\n its longest binary gap.\n\n The function should return 0 if num doesn't\n contain a binary gap.\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","steps":[],"attachments":[{"uid":"a541c471a2ff7ad0","name":"stdout","source":"a541c471a2ff7ad0.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"990d1d89497fbcc","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0}}],"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"863d982a547ab48a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/864ee426bf422b09.json b/allure-report/data/test-cases/864ee426bf422b09.json new file mode 100644 index 00000000000..00282e5160a --- /dev/null +++ b/allure-report/data/test-cases/864ee426bf422b09.json @@ -0,0 +1 @@ +{"uid":"864ee426bf422b09","name":"Testing permute_a_palindrome (positive)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_positive","historyId":"faf1054cf60e3f1fbb45c8dc0ece579f","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472624,"stop":1724733472749,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e0680ee49daf3ecd","name":"stdout","source":"e0680ee49daf3ecd.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"8729b907b71b7609.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/873ec1972fa36468.json b/allure-report/data/test-cases/873ec1972fa36468.json new file mode 100644 index 00000000000..58d2d8a44ce --- /dev/null +++ b/allure-report/data/test-cases/873ec1972fa36468.json @@ -0,0 +1 @@ +{"uid":"873ec1972fa36468","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_true","historyId":"c8ef830d4279bee02e53bf3a04349c35","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return true if it is a factor.\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"31feec1cbe8e86eb","name":"stdout","source":"31feec1cbe8e86eb.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"87664723e6f57cb6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8772a5f624316184.json b/allure-report/data/test-cases/8772a5f624316184.json deleted file mode 100644 index 3272db1b516..00000000000 --- a/allure-report/data/test-cases/8772a5f624316184.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8772a5f624316184","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"418db164c4b04ca4","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0}},{"uid":"dfb2b5c458a3460e","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1}},{"uid":"39b35ac8d306cbda","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"792ce345a0c4a9e1","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"80a5eacfa2431348","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0}},{"uid":"593778a5ba99d447","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1}},{"uid":"df0c490941a6877a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"c7106989a12e3c0a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"87b0b5de93d5cb12.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87b2e8453406c3f.json b/allure-report/data/test-cases/87b2e8453406c3f.json new file mode 100644 index 00000000000..1bd42209899 --- /dev/null +++ b/allure-report/data/test-cases/87b2e8453406c3f.json @@ -0,0 +1 @@ +{"uid":"87b2e8453406c3f","name":"Testing 'shortest_job_first(' function","fullName":"kyu_6.scheduling.test_solution.SJFTestCase#test_sjf","historyId":"da4a41f0bf9943ee34282e89227dd9a2","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","steps":[{"name":"Enter a n (([0], 0)) and verify the expected output (100) vs actual result (100)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 10, 20, 0, 0], 0)) and verify the expected output (6) vs actual result (6)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 10, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 0, 20, 0, 0], 2)) and verify the expected output (26) vs actual result (26)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([20, 20, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 19, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 0, 19, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 18, 0, 0], 75)) and verify the expected output (1008) vs actual result (1008)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 13, 13, 12, 17, 0, 15, 0, 12, 0, 15, 0, 0, 12, 19, 11, 10, 0, 11, 18, 0, 0, 15, 20, 0, 16, 12, 17, 0, 0, 10, 19, 0, 9, 0, 16, 19, 16, 15, 0, 17, 0, 13, 11, 19, 18, 13, 10, 0, 20, 0, 10, 9, 18, 14, 18, 0, 15, 17, 10, 17, 0, 0, 0, 18, 0, 0, 19, 14, 0, 0, 19, 19, 0, 0, 0, 0, 0, 9, 18, 0, 0, 11, 16, 0, 0, 0, 0, 10, 0, 17, 0, 16, 0, 0, 0, 16, 0, 13, 20, 0, 20, 20, 0, 0, 20, 14, 0, 11, 0, 9, 0, 0, 20, 11, 17, 0, 12, 13, 16, 13, 19, 0, 18, 20, 0, 19, 10, 19, 12, 0, 18, 0, 14, 9, 0, 0, 0, 13, 14, 9, 18, 9, 11, 19, 10, 20, 17, 13, 0, 13, 0, 12, 0, 19, 0, 14, 0, 20, 0, 14, 12, 11, 18, 0, 0, 9, 0, 19], 24)) and verify the expected output (275) vs actual result (275)","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase::0","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Scheduling (Shortest Job First or SJF)"},{"name":"tag","value":"QUEUES"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SCHEDULING"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.scheduling.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550cc572b9e7b563be00054f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b7eddfa61552d783","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0}},{"uid":"6081ff969f9ea72a","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"dd86378e3a37dfe4","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0}},{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"87b2e8453406c3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87df803cadfb61a6.json b/allure-report/data/test-cases/87df803cadfb61a6.json new file mode 100644 index 00000000000..e1fbf21d094 --- /dev/null +++ b/allure-report/data/test-cases/87df803cadfb61a6.json @@ -0,0 +1 @@ +{"uid":"87df803cadfb61a6","name":"Testing dirReduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c4ea8d9f8cc216b","name":"stdout","source":"c4ea8d9f8cc216b.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Directions Reduction"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"87df803cadfb61a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/87f281129608ef41.json b/allure-report/data/test-cases/87f281129608ef41.json new file mode 100644 index 00000000000..c4ec1c20f0b --- /dev/null +++ b/allure-report/data/test-cases/87f281129608ef41.json @@ -0,0 +1 @@ +{"uid":"87f281129608ef41","name":"Testing domain_name function","fullName":"kyu_5.extract_the_domain_name_from_url.test_domain_name.DomainNameTestCase#test_domain_name","historyId":"cd64b52319d4c70d68e281e8561ab97f","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732764218869,"stop":1732764218869,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1732764218872,"stop":1732764218872,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"PARSING"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"87f281129608ef41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8809fca01a516cec.json b/allure-report/data/test-cases/8809fca01a516cec.json new file mode 100644 index 00000000000..27b3fb455d3 --- /dev/null +++ b/allure-report/data/test-cases/8809fca01a516cec.json @@ -0,0 +1 @@ +{"uid":"8809fca01a516cec","name":"Testing century function","fullName":"kyu_8.century_from_year.test_century.CenturyTestCase#test_century","historyId":"079ace8555debd1c87111e8c5a6664bf","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1732764220847,"stop":1732764220847,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Century From Year"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Numbers"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"8809fca01a516cec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88501d2467af647f.json b/allure-report/data/test-cases/88501d2467af647f.json new file mode 100644 index 00000000000..7d4d3990da5 --- /dev/null +++ b/allure-report/data/test-cases/88501d2467af647f.json @@ -0,0 +1 @@ +{"uid":"88501d2467af647f","name":"Testing monkey_count function","fullName":"kyu_8.count_the_monkeys.test_monkey_count.MonkeyCountTestCase#test_monkey_count","historyId":"d34cb280748c185f029a17e9d0ab6437","time":{"start":1724733474585,"stop":1724733474600,"duration":15},"description":"\n Testing monkey_count function\n\n You take your son to the forest to see the monkeys.\n You know that there are a certain number there (n),\n but your son is too young to just appreciate the full\n number, he has to start counting them from 1.\n\n As a good parent, you will sit and count with him.\n Given the number (n), populate an array with all\n numbers up to and including that number, but excluding\n zero.\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that should take a shuffled list of\n unique numbers from 1 to n with one element missing\n (which can be any number including n). Should return\n this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"PERFORMANCE"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Number Zoo Patrol"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77a4cf3d728ec302","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0}},{"uid":"33444d7890f0540","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0}},{"uid":"babd57c21b463d43","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"67590949db6da2ee","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b22afbc33030e55f","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0}},{"uid":"e051944b31d54c14","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0}},{"uid":"3cf8d83dbb2d66b5","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"f0e71551541527fc","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}}]},"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"8878dccf56d36ba6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88b006bece2616b2.json b/allure-report/data/test-cases/88b006bece2616b2.json new file mode 100644 index 00000000000..3844697a77f --- /dev/null +++ b/allure-report/data/test-cases/88b006bece2616b2.json @@ -0,0 +1 @@ +{"uid":"88b006bece2616b2","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732764219366,"stop":1732764219366,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1732764219367,"stop":1732764219367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1732764219367,"stop":1732764219367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1732764219367,"stop":1732764219367,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1732764219369,"stop":1732764219369,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1732764219370,"stop":1732764219370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1732764219370,"stop":1732764219370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1732764219370,"stop":1732764219370,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1732764219371,"stop":1732764219371,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1732764219371,"stop":1732764219371,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1732764219372,"stop":1732764219372,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1732764219373,"stop":1732764219373,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Disease Spread"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"88b006bece2616b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/88ca13ae93cc2b33.json b/allure-report/data/test-cases/88ca13ae93cc2b33.json new file mode 100644 index 00000000000..4595e72dc18 --- /dev/null +++ b/allure-report/data/test-cases/88ca13ae93cc2b33.json @@ -0,0 +1 @@ +{"uid":"88ca13ae93cc2b33","name":"fix_the_meerkat function function verification","fullName":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat.FixTheMeerkatTestCase#test_fix_the_meerkat","historyId":"11e49f45979df22d4f121435101e70bc","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1732428196335,"stop":1732428196335,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1732428196337,"stop":1732428196337,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"My head is at the wrong end!"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"88ca13ae93cc2b33.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8930ec9e348fd4d.json b/allure-report/data/test-cases/8930ec9e348fd4d.json new file mode 100644 index 00000000000..a90e81a91c7 --- /dev/null +++ b/allure-report/data/test-cases/8930ec9e348fd4d.json @@ -0,0 +1 @@ +{"uid":"8930ec9e348fd4d","name":"Testing toJadenCase function (positive)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_positive","historyId":"7c48f5c6aa887d1bc76d081b028cf7cf","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8b70cbce8e882192","name":"stdout","source":"8b70cbce8e882192.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"895846e60323f8ba.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8966b735a3793409.json b/allure-report/data/test-cases/8966b735a3793409.json new file mode 100644 index 00000000000..763f85eb264 --- /dev/null +++ b/allure-report/data/test-cases/8966b735a3793409.json @@ -0,0 +1 @@ +{"uid":"8966b735a3793409","name":"Testing string_to_array function","fullName":"kyu_8.convert_string_to_an_array.test_string_to_array.StringToArrayTestCase#test_string_to_array","historyId":"f51ecfb2c4460f518b2155a78436a09d","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"description":"\n Testing string_to_array function.\n\n A function to split a string and\n convert it into an array of words.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428194233,"stop":1732428194233,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Find the safest places in town"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"89e4ffe6e2b4858c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/89e6e7af226f3582.json b/allure-report/data/test-cases/89e6e7af226f3582.json new file mode 100644 index 00000000000..1a78c3603e9 --- /dev/null +++ b/allure-report/data/test-cases/89e6e7af226f3582.json @@ -0,0 +1 @@ +{"uid":"89e6e7af226f3582","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"description":"\n For a given string s find the character c (or C) with\n longest consecutive repetition and return: (c, l)\n where l (or L) is the length of the repetition.\n\n For empty string return: ('', 0)\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"82b07dc960eb0dfb","name":"stdout","source":"82b07dc960eb0dfb.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of odd numbers"},{"name":"feature","value":"Math"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"8a609bc5e3d23df9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8a85b974bace8b60.json b/allure-report/data/test-cases/8a85b974bace8b60.json deleted file mode 100644 index 283a157ff8e..00000000000 --- a/allure-report/data/test-cases/8a85b974bace8b60.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"8a85b974bace8b60","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193934,"stop":1732428193934,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193934,"stop":1732428193934,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193934,"stop":1732428193934,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193934,"stop":1732428193934,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1732428193934,"stop":1732428193934,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1732428193935,"stop":1732428193935,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"String"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"8ade4c7a0e59dd30.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8b066879dcf90ee.json b/allure-report/data/test-cases/8b066879dcf90ee.json new file mode 100644 index 00000000000..f7e8c09debb --- /dev/null +++ b/allure-report/data/test-cases/8b066879dcf90ee.json @@ -0,0 +1 @@ +{"uid":"8b066879dcf90ee","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"description":"\n Testing string_transformer function\n with multiple test data.\n\n Given a string, return a new string that has\n transformed based on the input:\n\n 1. Change case of every character, ie. lower\n case to upper case, upper case to lower case.\n\n 2. Reverse the order of words from the input.\n\n :return:\n ","descriptionHtml":" A function f(n), should returns the n-th member of sequence.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_6\\\\no_arithmetic_progressions\\\\test_sequence.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"No arithmetic progressions"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.no_arithmetic_progressions.test_sequence"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0607115654a900140b3ce3","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"8bb4333bde7b6f57.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/8bbe92897a0837e7.json b/allure-report/data/test-cases/8bbe92897a0837e7.json
new file mode 100644
index 00000000000..cad58ac46b7
--- /dev/null
+++ b/allure-report/data/test-cases/8bbe92897a0837e7.json
@@ -0,0 +1 @@
+{"uid":"8bbe92897a0837e7","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_1","historyId":"ef9f0d6b554a403890075cafa527f60a","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196238,"stop":1732428196238,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"8bbe92897a0837e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c0ab77873b28b8f.json b/allure-report/data/test-cases/8c0ab77873b28b8f.json new file mode 100644 index 00000000000..d155c14151d --- /dev/null +++ b/allure-report/data/test-cases/8c0ab77873b28b8f.json @@ -0,0 +1 @@ +{"uid":"8c0ab77873b28b8f","name":"Testing 'DefaultList' class: append","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_append","historyId":"84d7f0a1c2a345b29fa2e222a5ed7ee5","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Append the list","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"8c0ab77873b28b8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c1749fbe9590e77.json b/allure-report/data/test-cases/8c1749fbe9590e77.json new file mode 100644 index 00000000000..2311f9feee3 --- /dev/null +++ b/allure-report/data/test-cases/8c1749fbe9590e77.json @@ -0,0 +1 @@ +{"uid":"8c1749fbe9590e77","name":"Testing Decoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding.DecodingTestCase#test_decoding","historyId":"4ffbfcd08c63c75577964e4b263564bd","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f1383a1298b478d1","name":"stdout","source":"f1383a1298b478d1.txt","type":"text/plain","size":530}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"8c1749fbe9590e77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c263832e40387fc.json b/allure-report/data/test-cases/8c263832e40387fc.json new file mode 100644 index 00000000000..1a94a6dc945 --- /dev/null +++ b/allure-report/data/test-cases/8c263832e40387fc.json @@ -0,0 +1 @@ +{"uid":"8c263832e40387fc","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732428195618,"stop":1732428195618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Row of the odd triangle"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"PERFORMANCE"},{"name":"suite","value":"Performance"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"8c263832e40387fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c2738ac8b329dff.json b/allure-report/data/test-cases/8c2738ac8b329dff.json new file mode 100644 index 00000000000..ca78bc17fe5 --- /dev/null +++ b/allure-report/data/test-cases/8c2738ac8b329dff.json @@ -0,0 +1 @@ +{"uid":"8c2738ac8b329dff","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 32, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Diophantine Equation"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"8c2738ac8b329dff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c4575be21ff0ded.json b/allure-report/data/test-cases/8c4575be21ff0ded.json new file mode 100644 index 00000000000..56634ce5c89 --- /dev/null +++ b/allure-report/data/test-cases/8c4575be21ff0ded.json @@ -0,0 +1 @@ +{"uid":"8c4575be21ff0ded","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"The Greatest Warrior"},{"name":"suite","value":"OOP"},{"name":"tag","value":"RULES"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a5ef1e97378ae643","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1}},{"uid":"b81b0ae77ee26a61","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0}},{"uid":"6fa9bd2fff491ec7","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"b82b2a2c9febe0c6","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3d05de3d43cf437d","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1}},{"uid":"751027d0ac0cc021","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0}},{"uid":"37b95a78feb35857","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"bc3230f80ad8864d","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"8c4575be21ff0ded.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8c72b971279020f.json b/allure-report/data/test-cases/8c72b971279020f.json new file mode 100644 index 00000000000..50e66dafa13 --- /dev/null +++ b/allure-report/data/test-cases/8c72b971279020f.json @@ -0,0 +1 @@ +{"uid":"8c72b971279020f","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"description":"\n Testing make_readable function\n\n Write a function, which takes a non-negative integer\n (seconds) as input and returns the time in a human-readable\n format (HH:MM:SS)\n\n HH = hours, padded to 2 digits, range: 00 - 99\n MM = minutes, padded to 2 digits, range: 00 - 59\n SS = seconds, padded to 2 digits, range: 00 - 59\n\n The maximum time never exceeds 359999 (99:59:59)\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6b06d8bb1f0d8ae7","name":"stdout","source":"6b06d8bb1f0d8ae7.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"8cb8fb70f937622b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8d0f8b1f359d2e57.json b/allure-report/data/test-cases/8d0f8b1f359d2e57.json new file mode 100644 index 00000000000..6f39714d95a --- /dev/null +++ b/allure-report/data/test-cases/8d0f8b1f359d2e57.json @@ -0,0 +1 @@ +{"uid":"8d0f8b1f359d2e57","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1732764218594,"stop":1732764218594,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"SECURITY"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"CIPHERS"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"8d44f2b97a47f0f3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8da0b58109862b1b.json b/allure-report/data/test-cases/8da0b58109862b1b.json new file mode 100644 index 00000000000..f4f81a2bc1c --- /dev/null +++ b/allure-report/data/test-cases/8da0b58109862b1b.json @@ -0,0 +1 @@ +{"uid":"8da0b58109862b1b","name":"test_solution_medium","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_medium","historyId":"7ee6731933bd9dff6fabc41830db1bf0","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"description":"\n Testing using medium test data\n :return:\n ","descriptionHtml":" Testing using medium test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 46, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"8da0b58109862b1b.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/8da8c6de16bb179d.json b/allure-report/data/test-cases/8da8c6de16bb179d.json
new file mode 100644
index 00000000000..e45012b297d
--- /dev/null
+++ b/allure-report/data/test-cases/8da8c6de16bb179d.json
@@ -0,0 +1 @@
+{"uid":"8da8c6de16bb179d","name":"Testing 'solution' function","fullName":"kyu_4.strip_comments.test_solution.SolutionTestCase#test_solution","historyId":"c421bbdf427fc6e784d70fcb75e166ee","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Strip Comments"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b1b08a9c0991d73d","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1}},{"uid":"3352f60feb1f9712","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0}},{"uid":"51842db2fafc0136","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"c4eaee07c56e2bda","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e604a93a8ee1253f","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1}},{"uid":"4b8219eb37520d2d","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0}},{"uid":"f711bbcd16ab2119","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"5c64823a2a73f974","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"8da8c6de16bb179d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8db7c8bf0abe07bc.json b/allure-report/data/test-cases/8db7c8bf0abe07bc.json new file mode 100644 index 00000000000..b655ca048b3 --- /dev/null +++ b/allure-report/data/test-cases/8db7c8bf0abe07bc.json @@ -0,0 +1 @@ +{"uid":"8db7c8bf0abe07bc","name":"Testing two_decimal_places function","fullName":"kyu_7.formatting_decimal_places_1.test_two_decimal_places.TwoDecimalPlacesTestCase#test_two_decimal_places","historyId":"27ae718be00b2e9f316c37c338cb2894","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"description":"\n Testing two_decimal_places function\n with various test inputs\n\n Each floating-point number should be\n formatted that only the first two\n decimal places are returned.\n\n You don't need to check whether the input\n is a valid number because only valid numbers\n are used in the tests.\n\n Don't round the numbers! Just cut them\n after two decimal places!\n\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"778d3397f8515034","name":"stdout","source":"778d3397f8515034.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"INTEGERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"8ebc308a5806000e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/8f3c559eb697de75.json b/allure-report/data/test-cases/8f3c559eb697de75.json new file mode 100644 index 00000000000..be7539ebdee --- /dev/null +++ b/allure-report/data/test-cases/8f3c559eb697de75.json @@ -0,0 +1 @@ +{"uid":"8f3c559eb697de75","name":"Testing hoop_count function (negative test case)","fullName":"kyu_8.keep_up_the_hoop.test_hoop_count.HoopCountTestCase#test_hoop_count_negative","historyId":"89ee625343ed07ab852f830d9cc358b3","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"description":"\n Testing hoop_count function (negative)\n :return:\n ","descriptionHtml":"Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1711c955ae8ed0a7","name":"stdout","source":"1711c955ae8ed0a7.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"Snail"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"903c4d3d57375ecf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90548ade83f4ad3f.json b/allure-report/data/test-cases/90548ade83f4ad3f.json new file mode 100644 index 00000000000..da4027242e5 --- /dev/null +++ b/allure-report/data/test-cases/90548ade83f4ad3f.json @@ -0,0 +1 @@ +{"uid":"90548ade83f4ad3f","name":"Testing odd_row function","fullName":"kyu_6.row_of_the_odd_triangle.test_odd_row.OddRowTestCase#test_odd_row","historyId":"6738a51245363d65952509f12ebc1af8","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing odd_row function with various test data\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1732764220295,"stop":1732764220295,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Performance"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Row of the odd triangle"},{"name":"tag","value":"PERFORMANCE"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"90548ade83f4ad3f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/90ca6a0c009b593.json b/allure-report/data/test-cases/90ca6a0c009b593.json new file mode 100644 index 00000000000..612df6e0dd4 --- /dev/null +++ b/allure-report/data/test-cases/90ca6a0c009b593.json @@ -0,0 +1 @@ +{"uid":"90ca6a0c009b593","name":"Should return 'Publish!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_publish","historyId":"b4a1fa278aa899a374ebad09960e6cca","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"description":"\n If there are one or two good ideas,\n return 'Publish!',\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"9130d2ce9d2203c6.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/913459f449cde9ee.json b/allure-report/data/test-cases/913459f449cde9ee.json
deleted file mode 100644
index 5fb4b7bb15e..00000000000
--- a/allure-report/data/test-cases/913459f449cde9ee.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"913459f449cde9ee","name":"Testing next_smaller function","fullName":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller.NextSmallerTestCase#test_next_smaller","historyId":"9d8cb8adf1764c55348d349698b938ac","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2563dd25f9db8ef8","name":"stdout","source":"2563dd25f9db8ef8.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"INTEGERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fca0a479e6a9caa","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"913459f449cde9ee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/913fbd5c2da31308.json b/allure-report/data/test-cases/913fbd5c2da31308.json new file mode 100644 index 00000000000..51a3f3ae957 --- /dev/null +++ b/allure-report/data/test-cases/913fbd5c2da31308.json @@ -0,0 +1 @@ +{"uid":"913fbd5c2da31308","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Range Extraction"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"STRING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ac8d0c005e499da5","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0}},{"uid":"1fa1afd4ab27e4cb","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2}},{"uid":"78b238490a0d0c98","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"ac66f87691632de7","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d5aba2cd944d7efd","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0}},{"uid":"a3395496d8bde803","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2}},{"uid":"f80099cf6c294d2b","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"tags":["FORMATTING","STRINGS","STRING","ALGORITHMS"]},"source":"913fbd5c2da31308.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/91592072a42568a2.json b/allure-report/data/test-cases/91592072a42568a2.json new file mode 100644 index 00000000000..e5d3c313ef2 --- /dev/null +++ b/allure-report/data/test-cases/91592072a42568a2.json @@ -0,0 +1 @@ +{"uid":"91592072a42568a2","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[{"name":"Assert that classes have Bob arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have Dog arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 5 arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have good arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have 50lb arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes have brown arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e355939f9d2af970","name":"stdout","source":"e355939f9d2af970.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Make Class"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"91592072a42568a2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/918346e849cd43c1.json b/allure-report/data/test-cases/918346e849cd43c1.json deleted file mode 100644 index e14c8b549ba..00000000000 --- a/allure-report/data/test-cases/918346e849cd43c1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"918346e849cd43c1","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"description":"\n Testing growing_plant function\n\n Task\n\n Each day a plant is growing by upSpeed meters.\n Each night that plant's height decreases by downSpeed\n meters due to the lack of sun heat. Initially, plant\n is 0 meters tall. We plant the seed at the beginning\n of a day. We want to know when the height of the plant\n will reach a certain level.\n\n Example\n\n For upSpeed = 100, downSpeed = 10 and desiredHeight = 910,\n the output should be 10.\n\n For upSpeed = 10, downSpeed = 9 and desiredHeight = 4,\n the output should be 1. Because the plant reach to the desired\n height at day 1(10 meters).\n\n Input/Output\n\n [input] integer upSpeed\n A positive integer representing the daily growth.\n Constraints: 5 ⤠upSpeed ⤠100.\n\n [input] integer downSpeed\n A positive integer representing the nightly decline.\n Constraints: 2 ⤠downSpeed < upSpeed.\n\n [input] integer desiredHeight\n A positive integer representing the threshold.\n Constraints: 4 ⤠desiredHeight ⤠1000.\n\n [output] an integer\n\n The number of days that it will take for the plant to\n reach/pass desiredHeight (including the last day in the\n total count).\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[{"name":"Assert that classes have Bob arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have Dog arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have 5 arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have good arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have 50lb arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have brown arg","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1193ec856aedeb02","name":"stdout","source":"1193ec856aedeb02.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Make Class"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ea06cb7ae28c8945","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"tags":[]},"source":"91ff78dc5a767b91.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9212c6b19c8a287e.json b/allure-report/data/test-cases/9212c6b19c8a287e.json new file mode 100644 index 00000000000..7a2a011391b --- /dev/null +++ b/allure-report/data/test-cases/9212c6b19c8a287e.json @@ -0,0 +1 @@ +{"uid":"9212c6b19c8a287e","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"51125223dfac2107","name":"stdout","source":"51125223dfac2107.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"No kyu helper methods"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"e0604dcf0c194a67","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"928532982127bba0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/92b17e5074e54ef7.json b/allure-report/data/test-cases/92b17e5074e54ef7.json deleted file mode 100644 index 15514f93f74..00000000000 --- a/allure-report/data/test-cases/92b17e5074e54ef7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"92b17e5074e54ef7","name":"test_starting_position_from_negatives","fullName":"kyu_3.line_safari_is_that_a_line.test_walker.WalkerClassTestCase#test_starting_position_from_negatives","historyId":"d078abbf63387d06892c04835cc6719c","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on negative grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 89, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"af2006fa8ad3035d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472327,"stop":1724733472327,"duration":0}}],"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"92b17e5074e54ef7.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/93145ed3e3e64e21.json b/allure-report/data/test-cases/93145ed3e3e64e21.json
deleted file mode 100644
index 2edd7e381fc..00000000000
--- a/allure-report/data/test-cases/93145ed3e3e64e21.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"93145ed3e3e64e21","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"777a522aaa0b36d6","name":"stdout","source":"777a522aaa0b36d6.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"93145ed3e3e64e21.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/931a1e301c63c1a1.json b/allure-report/data/test-cases/931a1e301c63c1a1.json new file mode 100644 index 00000000000..19c17632ca7 --- /dev/null +++ b/allure-report/data/test-cases/931a1e301c63c1a1.json @@ -0,0 +1 @@ +{"uid":"931a1e301c63c1a1","name":"Testing 'parts_sums' function","fullName":"kyu_6.sums_of_parts.test_solution.PartsSumTestCase#test_parts_sum","historyId":"570c0d220c13fc0fd061240afc68e35d","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"description":"\n Testing 'parts_sums' function with various test data\n :return:\n ","descriptionHtml":"Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
Test a function that take as parameter a list ls and return a list of the sums of its parts as defined below:
ls = [1, 2, 3, 4, 5, 6]
parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]
Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9664dbae27a9df3","name":"stdout","source":"9664dbae27a9df3.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PUZZLES"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"93600ea56dc1843a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/93b3042e12ae0dc2.json b/allure-report/data/test-cases/93b3042e12ae0dc2.json deleted file mode 100644 index 8abb95c997e..00000000000 --- a/allure-report/data/test-cases/93b3042e12ae0dc2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"93b3042e12ae0dc2","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"20504931bd72ff66","name":"stdout","source":"20504931bd72ff66.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc816863f78bcd65","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"93b3042e12ae0dc2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9400c2351555d83a.json b/allure-report/data/test-cases/9400c2351555d83a.json new file mode 100644 index 00000000000..9fdb086cfa4 --- /dev/null +++ b/allure-report/data/test-cases/9400c2351555d83a.json @@ -0,0 +1 @@ +{"uid":"9400c2351555d83a","name":"Positive test cases for is_prime function testing","fullName":"utils.primes.test_is_prime.IsPrimeTestCase#test_is_prime_positive","historyId":"fb8836e996664af9461454bae0b6f79c","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"9400c2351555d83a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94470fc1dd0d3d27.json b/allure-report/data/test-cases/94470fc1dd0d3d27.json new file mode 100644 index 00000000000..4c396a3bf43 --- /dev/null +++ b/allure-report/data/test-cases/94470fc1dd0d3d27.json @@ -0,0 +1 @@ +{"uid":"94470fc1dd0d3d27","name":"Testing calculate_damage function","fullName":"kyu_6.pokemon_damage_calculator.test_calculate_damage.CalculateDamageTestCase#test_calculate_damage","historyId":"999238307e14499484c6cdf395220c6b","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3cae79604aa7933a","name":"stdout","source":"3cae79604aa7933a.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"FUNCTIONS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Games"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"94470fc1dd0d3d27.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/946874b940758475.json b/allure-report/data/test-cases/946874b940758475.json new file mode 100644 index 00000000000..9ab43a059ec --- /dev/null +++ b/allure-report/data/test-cases/946874b940758475.json @@ -0,0 +1 @@ +{"uid":"946874b940758475","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"946874b940758475.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/94887fb9761f9305.json b/allure-report/data/test-cases/94887fb9761f9305.json new file mode 100644 index 00000000000..0cb9d4a0b25 --- /dev/null +++ b/allure-report/data/test-cases/94887fb9761f9305.json @@ -0,0 +1 @@ +{"uid":"94887fb9761f9305","name":"Testing 'sum_triangular_numbers' with big number as an input","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_big_number","historyId":"e2716f691be2a9d6b5fd30d66b1f784d","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"description":"\n Testing 'sum_triangular_numbers' function\n with big number as an input\n :return:\n ","descriptionHtml":" Testing using big test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 70, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"94ea40491ebef366.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/9546971ec41b8ce1.json b/allure-report/data/test-cases/9546971ec41b8ce1.json
new file mode 100644
index 00000000000..5910a341a96
--- /dev/null
+++ b/allure-report/data/test-cases/9546971ec41b8ce1.json
@@ -0,0 +1 @@
+{"uid":"9546971ec41b8ce1","name":"Testing sum_for_list function","fullName":"kyu_4.sum_by_factors.test_sum_for_list.SumForListTestCase#test_sum_for_list","historyId":"d8ed55046475c7e2ae8edf6bff7b1316","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1732764218697,"stop":1732764218697,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1732764218699,"stop":1732764218699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1732764218699,"stop":1732764218699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1732764218699,"stop":1732764218699,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1732764218753,"stop":1732764218753,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1732764218753,"stop":1732764218753,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1732764218753,"stop":1732764218753,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1732764218753,"stop":1732764218753,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1732764218763,"stop":1732764218763,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"Sum by Factors"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"9546971ec41b8ce1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/95500b18da61d76.json b/allure-report/data/test-cases/95500b18da61d76.json new file mode 100644 index 00000000000..b3f5c406f7e --- /dev/null +++ b/allure-report/data/test-cases/95500b18da61d76.json @@ -0,0 +1 @@ +{"uid":"95500b18da61d76","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"description":"\n The function should return a formatted string.\n The return value should equal \"Value is VALUE\"\n where value is a 5 digit padded number.\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732764220190,"stop":1732764220190,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1732764220193,"stop":1732764220193,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FORMATTING"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"95fe30b3b4a958d6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/960c8899017a5d3c.json b/allure-report/data/test-cases/960c8899017a5d3c.json deleted file mode 100644 index 762020e14c5..00000000000 --- a/allure-report/data/test-cases/960c8899017a5d3c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"960c8899017a5d3c","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"fdeff84d2ee8d5a7","name":"stdout","source":"fdeff84d2ee8d5a7.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Array.diff"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"960c8899017a5d3c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/966dbbb37b9c251e.json b/allure-report/data/test-cases/966dbbb37b9c251e.json deleted file mode 100644 index 77a389d1d93..00000000000 --- a/allure-report/data/test-cases/966dbbb37b9c251e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"966dbbb37b9c251e","name":"Wolf at the beginning of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_start","historyId":"dcabd02011959f0337d9098678ad990d","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"description":"\n If the wolf is the closest animal to you,\n return \"Pls go away and stop eating my sheep\".\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":3,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"suite","value":"Data Structures"},{"name":"tag","value":"Strings"},{"name":"feature","value":"Lists"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"Logic"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"Algorithms"},{"name":"story","value":"Coloured Triangles"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a25ac6ac5e284cfbe000111","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"338755bddf5c3394","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3}},{"uid":"33cbde6b5c940b7b","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1}},{"uid":"2febaffd225102f","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"732b9dd805d734b8","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3}},{"uid":"3ffa72675847f113","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1}},{"uid":"7e0d94f0ee4e397d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"2d65aaadaa20d5c2","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"96938210802b960f.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/9710b9a44c2e3c82.json b/allure-report/data/test-cases/9710b9a44c2e3c82.json
deleted file mode 100644
index 51497f6d6e1..00000000000
--- a/allure-report/data/test-cases/9710b9a44c2e3c82.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"9710b9a44c2e3c82","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"description":"\n Testing 'count_sheeps' function\n Consider an array of sheep where some sheep\n may be missing from their place.\n We need a function that counts the\n number of sheep present in the array\n (true means present).\n\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732428195589,"stop":1732428195589,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1732428195591,"stop":1732428195591,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Potion Class 101"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Algorithms"},{"name":"suite","value":"Classes"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"975470b122402791.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/97c98bd57653ce11.json b/allure-report/data/test-cases/97c98bd57653ce11.json new file mode 100644 index 00000000000..26bbfa760de --- /dev/null +++ b/allure-report/data/test-cases/97c98bd57653ce11.json @@ -0,0 +1 @@ +{"uid":"97c98bd57653ce11","name":"You are given two angles -> find the 3rd.","fullName":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle.OtherAngleTestCase#test_other_angle","historyId":"6630066bed88b9c8246478bc4b94ac73","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9bd069e9e159fee7","name":"stdout","source":"9bd069e9e159fee7.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"97d66dc06144a438.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/981acdaf3faf1d8f.json b/allure-report/data/test-cases/981acdaf3faf1d8f.json new file mode 100644 index 00000000000..ee642c537f5 --- /dev/null +++ b/allure-report/data/test-cases/981acdaf3faf1d8f.json @@ -0,0 +1 @@ +{"uid":"981acdaf3faf1d8f","name":"Testing create_city_map function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_create_city_map","historyId":"e437e22193ec7315819824ea1255ab3f","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7379dff7e25cb0a5","name":"stdout","source":"7379dff7e25cb0a5.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"981acdaf3faf1d8f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9823bb7abc34f758.json b/allure-report/data/test-cases/9823bb7abc34f758.json new file mode 100644 index 00000000000..4aba3212135 --- /dev/null +++ b/allure-report/data/test-cases/9823bb7abc34f758.json @@ -0,0 +1 @@ +{"uid":"9823bb7abc34f758","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"description":"\n The player rolls the dice and moves the number\n of spaces indicated by the dice two times.\n\n Pass position and roll and compare the output\n to the expected result\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cae9efbee6f5aead","name":"stdout","source":"cae9efbee6f5aead.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Help the bookseller !"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"9835bf28bd7241b2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/984b8a80ce69773d.json b/allure-report/data/test-cases/984b8a80ce69773d.json new file mode 100644 index 00000000000..4a6577e3d88 --- /dev/null +++ b/allure-report/data/test-cases/984b8a80ce69773d.json @@ -0,0 +1 @@ +{"uid":"984b8a80ce69773d","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194146,"stop":1732428194146,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"OOP"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"RULES"},{"name":"tag","value":"CLASSES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"988614c511102150.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/990d1d89497fbcc.json b/allure-report/data/test-cases/990d1d89497fbcc.json deleted file mode 100644 index fef6bf476b9..00000000000 --- a/allure-report/data/test-cases/990d1d89497fbcc.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"990d1d89497fbcc","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","steps":[],"attachments":[{"uid":"f220cca72eddc4b9","name":"stdout","source":"f220cca72eddc4b9.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"990d1d89497fbcc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99363c879a15b2c4.json b/allure-report/data/test-cases/99363c879a15b2c4.json new file mode 100644 index 00000000000..821b784a121 --- /dev/null +++ b/allure-report/data/test-cases/99363c879a15b2c4.json @@ -0,0 +1 @@ +{"uid":"99363c879a15b2c4","name":"'multiply' function verification with one element list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_one_element_list","historyId":"95946a599255beb095c6c7c676174082","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"description":"\n Returns [] if list has only one element\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1733030098849,"stop":1733030098864,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Aggregations"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Sum of Intervals"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"AGGREGATIONS"},{"name":"tag","value":"INTEGERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1191e503f4a01ba8","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1}},{"uid":"761ca73c34549675","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1}},{"uid":"160f56b842e7aedc","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"83da90e97e5349e6","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"61e07c6ddcc506b1","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1}},{"uid":"9f9422c1f71252b6","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1}},{"uid":"e03974f538ea8ee6","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"acc95e26a53d92ff","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}}]},"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"99e95613ed424b35.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/99f691b62c390084.json b/allure-report/data/test-cases/99f691b62c390084.json deleted file mode 100644 index 6afcdd8ee5d..00000000000 --- a/allure-report/data/test-cases/99f691b62c390084.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"99f691b62c390084","name":"Testing solution function","fullName":"kyu_4.range_extraction.test_solution.SolutionTestCase#test_solution","historyId":"0ca6c261f6caf983cecc5d9fa898244b","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"167e62bfea691dff","name":"stdout","source":"167e62bfea691dff.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRING"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Range Extraction"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"12da189269ca1ca6","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0}}],"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"99f691b62c390084.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9a76d6db19b09f54.json b/allure-report/data/test-cases/9a76d6db19b09f54.json new file mode 100644 index 00000000000..d4c33dbf923 --- /dev/null +++ b/allure-report/data/test-cases/9a76d6db19b09f54.json @@ -0,0 +1 @@ +{"uid":"9a76d6db19b09f54","name":"Testing 'has_subpattern' (part 1) function","fullName":"kyu_6.string_subpattern_recognition_1.test_has_subpattern.HasSubpatternTestCase#test_has_subpattern","historyId":"b91c13716f440f33b1f90d86b217b534","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"description":"\n String subpattern recognition I\n\n Verify that 'has_subpattern' function to returns\n either true/True or false/False if a string can be\n seen as the repetition of a simpler/shorter subpattern or not.\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732428194511,"stop":1732428194511,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1732428194513,"stop":1732428194513,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"story","value":"Sum of Pairs"},{"name":"feature","value":"Memoization"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MEMOIZATION"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"9b26a570961ab395.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b43d122708c0be8.json b/allure-report/data/test-cases/9b43d122708c0be8.json deleted file mode 100644 index 66284777a5b..00000000000 --- a/allure-report/data/test-cases/9b43d122708c0be8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9b43d122708c0be8","name":"Test with regular string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings","historyId":"12f0f975ccfd38a2860e83db6017e19f","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"description":"\n Test with regular string\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732764220426,"stop":1732764220426,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9b5e6753141602b8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b6456a02fb8e586.json b/allure-report/data/test-cases/9b6456a02fb8e586.json new file mode 100644 index 00000000000..65ee7cf1bab --- /dev/null +++ b/allure-report/data/test-cases/9b6456a02fb8e586.json @@ -0,0 +1 @@ +{"uid":"9b6456a02fb8e586","name":"Testing shark function (negative)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_bait","historyId":"83b78a44a84315eae8c56a708925a03e","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732428196237,"stop":1732428196237,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428196250,"stop":1732428196250,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732428196251,"stop":1732428196251,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Math"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9b6456a02fb8e586.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9b651a3e27842d38.json b/allure-report/data/test-cases/9b651a3e27842d38.json new file mode 100644 index 00000000000..73efdc24842 --- /dev/null +++ b/allure-report/data/test-cases/9b651a3e27842d38.json @@ -0,0 +1 @@ +{"uid":"9b651a3e27842d38","name":"Testing 'sum_triangular_numbers' with negative numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_negative_numbers","historyId":"4e553d5e3ff5fc5c21a746a843af96e5","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"44675768f78eee8a","name":"stdout","source":"44675768f78eee8a.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Array to HTML table"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"9bb9bf100d008741.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9bf22c06763280e5.json b/allure-report/data/test-cases/9bf22c06763280e5.json deleted file mode 100644 index 01fc9daeebf..00000000000 --- a/allure-report/data/test-cases/9bf22c06763280e5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9bf22c06763280e5","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"48efcf6226950113","name":"stdout","source":"48efcf6226950113.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Strings Mix"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"9c58cd2f052b55a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c7635c760d519cd.json b/allure-report/data/test-cases/9c7635c760d519cd.json new file mode 100644 index 00000000000..8dd5b62d5ec --- /dev/null +++ b/allure-report/data/test-cases/9c7635c760d519cd.json @@ -0,0 +1 @@ +{"uid":"9c7635c760d519cd","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied\n by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied\n by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1732428193903,"stop":1732428193903,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Battleship field validator"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAME BOARDS"},{"name":"feature","value":"Lists"},{"name":"tag","value":"VALIDATION"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"9c7635c760d519cd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9c8287ca55a94ba5.json b/allure-report/data/test-cases/9c8287ca55a94ba5.json deleted file mode 100644 index 9d88de626be..00000000000 --- a/allure-report/data/test-cases/9c8287ca55a94ba5.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9c8287ca55a94ba5","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"description":"\n Testing check_root function with various test inputs\n\n A function which takes numbers separated by commas\n in string format and returns the number which is a\n perfect square and the square root of that number.\n\n If string contains other characters than number or\n it has more or less than 4 numbers separated by comma\n function returns \"incorrect input\".\n\n If string contains 4 numbers but not consecutive it\n returns \"not consecutive\".\n :return:\n ","descriptionHtml":"Valid large test string
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test valid_parentheses function with\n valid large string\n :return:\n ","descriptionHtml":"Valid large test string
","status":"passed","steps":[{"name":"Enter a large valid test string and verifythat the function returns True.","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Valid Parentheses"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/6411b91a5e71b915d237332d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},"source":"9cc2024d730e5f8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d0a0378192b3dfd.json b/allure-report/data/test-cases/9d0a0378192b3dfd.json new file mode 100644 index 00000000000..eb35f3bb466 --- /dev/null +++ b/allure-report/data/test-cases/9d0a0378192b3dfd.json @@ -0,0 +1 @@ +{"uid":"9d0a0378192b3dfd","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1732428194134,"stop":1732428194134,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"OOP"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"RULES"},{"name":"tag","value":"CLASSES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"9d0a0378192b3dfd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d10648422f3aeed.json b/allure-report/data/test-cases/9d10648422f3aeed.json new file mode 100644 index 00000000000..25d33bc336a --- /dev/null +++ b/allure-report/data/test-cases/9d10648422f3aeed.json @@ -0,0 +1 @@ +{"uid":"9d10648422f3aeed","name":"Testing shark function (negative)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_bait","historyId":"83b78a44a84315eae8c56a708925a03e","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"9d10648422f3aeed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d243bfb1021bb63.json b/allure-report/data/test-cases/9d243bfb1021bb63.json new file mode 100644 index 00000000000..7cd4328de6a --- /dev/null +++ b/allure-report/data/test-cases/9d243bfb1021bb63.json @@ -0,0 +1 @@ +{"uid":"9d243bfb1021bb63","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the output","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c5e4c41a6f3733c3","name":"stdout","source":"c5e4c41a6f3733c3.txt","type":"text/plain","size":3097}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"PARSING"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"RANKING"},{"name":"story","value":"Most frequently used words in a text"},{"name":"feature","value":"String"},{"name":"tag","value":"FILTERING"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"9d396e0b9ed83131.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d4c9ba0aff07821.json b/allure-report/data/test-cases/9d4c9ba0aff07821.json new file mode 100644 index 00000000000..8fc549c9e9d --- /dev/null +++ b/allure-report/data/test-cases/9d4c9ba0aff07821.json @@ -0,0 +1 @@ +{"uid":"9d4c9ba0aff07821","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732428194238,"stop":1732428194238,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Find the safest places in town"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"9d8106b104f30ee6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9d90f23892be7ac3.json b/allure-report/data/test-cases/9d90f23892be7ac3.json deleted file mode 100644 index 76391f57d79..00000000000 --- a/allure-report/data/test-cases/9d90f23892be7ac3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"9d90f23892be7ac3","name":"Testing toJadenCase function (positive)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_positive","historyId":"7c48f5c6aa887d1bc76d081b028cf7cf","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1732764220922,"stop":1732764220922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"9e4cc550b1ac8808.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e692004742b5469.json b/allure-report/data/test-cases/9e692004742b5469.json new file mode 100644 index 00000000000..af255d89b89 --- /dev/null +++ b/allure-report/data/test-cases/9e692004742b5469.json @@ -0,0 +1 @@ +{"uid":"9e692004742b5469","name":"Testing validate_battlefield function","fullName":"kyu_3.battleship_field_validator.test_battleship_validator.BattleshipFieldValidatorTestCase#test_validate_battlefield","historyId":"b22abb76677627273b26e5c011545fb2","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"73dfd6fcf3f0a2ae","name":"stdout","source":"73dfd6fcf3f0a2ae.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"GAME BOARDS"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Battleship field validator"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"9e692004742b5469.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e6eb35888cc4f59.json b/allure-report/data/test-cases/9e6eb35888cc4f59.json new file mode 100644 index 00000000000..6b229c700c2 --- /dev/null +++ b/allure-report/data/test-cases/9e6eb35888cc4f59.json @@ -0,0 +1 @@ +{"uid":"9e6eb35888cc4f59","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a72e2d4e966e7c09","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1}},{"uid":"ccac52878bec48b6","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0}},{"uid":"297d8e250a3e646f","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"1b90e35542bb0d33","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"17c9a97f8a5ea815","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1}},{"uid":"8da01589d3299948","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0}},{"uid":"ef7e94367cfcafa4","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"14e29fc6b385d9d8","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"9e6eb35888cc4f59.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9e884f6ea55b7c35.json b/allure-report/data/test-cases/9e884f6ea55b7c35.json new file mode 100644 index 00000000000..1dca345c6f0 --- /dev/null +++ b/allure-report/data/test-cases/9e884f6ea55b7c35.json @@ -0,0 +1 @@ +{"uid":"9e884f6ea55b7c35","name":"Wolf at the beginning of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_start","historyId":"dcabd02011959f0337d9098678ad990d","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"description":"\n If the wolf is the closest animal to you,\n return \"Pls go away and stop eating my sheep\".\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"572cb30872911938","name":"stdout","source":"572cb30872911938.txt","type":"text/plain","size":1515}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Human readable duration format"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATS"},{"name":"tag","value":"DATES/TIME"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"9f53adfade05c52d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9f56730a0e41c609.json b/allure-report/data/test-cases/9f56730a0e41c609.json new file mode 100644 index 00000000000..20dcc5a1c24 --- /dev/null +++ b/allure-report/data/test-cases/9f56730a0e41c609.json @@ -0,0 +1 @@ +{"uid":"9f56730a0e41c609","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calc class\n\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6da8b20d7eb3affa","name":"stdout","source":"6da8b20d7eb3affa.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"parentSuite","value":"Proficient"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"OPERATORS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"epic","value":"2 kyu"},{"name":"tag","value":"PARSING STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"9f56f65d85b3cd20.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/9faa60a73c33e8b6.json b/allure-report/data/test-cases/9faa60a73c33e8b6.json new file mode 100644 index 00000000000..fa49ac5c18b --- /dev/null +++ b/allure-report/data/test-cases/9faa60a73c33e8b6.json @@ -0,0 +1 @@ +{"uid":"9faa60a73c33e8b6","name":"Testing permute_a_palindrome (positive)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_positive","historyId":"faf1054cf60e3f1fbb45c8dc0ece579f","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[{"name":"Assert that classes Bob and Bob have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes Dog and Dog have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 5 and 5 have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes good and good have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 50lb and 50lb have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes brown and brown have equal properties","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Make Class"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"suite","value":"OOP"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e7e1c54963ba7bf7","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0}},{"uid":"29dbd6c095321046","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0}},{"uid":"91592072a42568a2","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"1fc6416a9dae71a6","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ab3687d99fed99d0","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0}},{"uid":"5af3f258cf327b2a","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0}},{"uid":"dead64fe3d4f484d","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"91ff78dc5a767b91","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},"source":"a088624abb606e0e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a0cc441d7d4eb4dd.json b/allure-report/data/test-cases/a0cc441d7d4eb4dd.json deleted file mode 100644 index 13c1b416e58..00000000000 --- a/allure-report/data/test-cases/a0cc441d7d4eb4dd.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a0cc441d7d4eb4dd","name":"String with alphabet chars only","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_alpha_only","historyId":"f1e3ad74179a106b1d5dc35a6ffe21fa","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732428195853,"stop":1732428195853,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"a124532204114d8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a14fdddc74cd287e.json b/allure-report/data/test-cases/a14fdddc74cd287e.json deleted file mode 100644 index f721383af97..00000000000 --- a/allure-report/data/test-cases/a14fdddc74cd287e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a14fdddc74cd287e","name":"Testing 'sum_triangular_numbers' with zero","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_zero","historyId":"fc1061f17dd61adf726ad7c2bb23539c","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with zero as an input\n :return:\n ","descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Given a triangle of consecutive odd numbers find the triangle's row knowing its index (the rows are 1-indexed)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output ([1]) vs actual result ([1])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output ([3, 5]) vs actual result ([3, 5])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181]) vs actual result ([157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 177, 179, 181])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379]) vs actual result ([343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721]) vs actual result ([1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721])","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a23effdd1e0b0387","name":"stdout","source":"a23effdd1e0b0387.txt","type":"text/plain","size":1013}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PERFORMANCE"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Row of the odd triangle"},{"name":"suite","value":"Performance"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.row_of_the_odd_triangle.test_odd_row"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5d5a7525207a674b71aa25b5/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["PERFORMANCE","ALGORITHMS"]},"source":"a1726ce9583568d0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1830f831e47cf3a.json b/allure-report/data/test-cases/a1830f831e47cf3a.json deleted file mode 100644 index d3a4eb91fea..00000000000 --- a/allure-report/data/test-cases/a1830f831e47cf3a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a1830f831e47cf3a","name":"Testing shark function (negative)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_bait","historyId":"83b78a44a84315eae8c56a708925a03e","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"suite","value":"Math"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a1830f831e47cf3a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a1c87b2c2a6c0bb7.json b/allure-report/data/test-cases/a1c87b2c2a6c0bb7.json new file mode 100644 index 00000000000..3a72ed1f7e8 --- /dev/null +++ b/allure-report/data/test-cases/a1c87b2c2a6c0bb7.json @@ -0,0 +1 @@ +{"uid":"a1c87b2c2a6c0bb7","name":"Testing period_is_late function (negative)","fullName":"kyu_8.is_your_period_late.test_is_your_period_late.PeriodIsLateTestCase#test_period_is_late_negative","historyId":"3ade0b8dc3a70452a99ea470cea361ac","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"description":"\n Negative tests\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1732428195635,"stop":1732428195635,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Sort the odd"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a200977d521a9785.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a20677ca4b1de4b9.json b/allure-report/data/test-cases/a20677ca4b1de4b9.json deleted file mode 100644 index 60bb27d3919..00000000000 --- a/allure-report/data/test-cases/a20677ca4b1de4b9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a20677ca4b1de4b9","name":"OR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_or","historyId":"ae9d861fd855b26fd2ffe303ebf8c238","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"description":"\n In logic and mathematics, or is the\n truth-functional operator of (inclusive)\n disjunction, also known as alternation.\n\n The or of a set of operands is true if\n and only if one or more of its operands is true.\n\n Source:\n https://en.wikipedia.org/wiki/Logical_disjunction\n\n :return:\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string aba and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string moOse and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the result","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1732428195862,"stop":1732428195862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Isograms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"a293120689451651.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2c0d72771fc18f1.json b/allure-report/data/test-cases/a2c0d72771fc18f1.json new file mode 100644 index 00000000000..010adfa0324 --- /dev/null +++ b/allure-report/data/test-cases/a2c0d72771fc18f1.json @@ -0,0 +1 @@ +{"uid":"a2c0d72771fc18f1","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aad37f3b55b49e8b","name":"stdout","source":"aad37f3b55b49e8b.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"a2c0d72771fc18f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2cb5446a34df86.json b/allure-report/data/test-cases/a2cb5446a34df86.json deleted file mode 100644 index a3543bda2a1..00000000000 --- a/allure-report/data/test-cases/a2cb5446a34df86.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a2cb5446a34df86","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_test","historyId":"eb0582ce0674121869dd4f6fce46e7f3","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1732428194566,"stop":1732428194566,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1732428194569,"stop":1732428194569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Array to HTML table"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"a2d5dff34138108f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2e66c48b8347bd.json b/allure-report/data/test-cases/a2e66c48b8347bd.json new file mode 100644 index 00000000000..a344a53038d --- /dev/null +++ b/allure-report/data/test-cases/a2e66c48b8347bd.json @@ -0,0 +1 @@ +{"uid":"a2e66c48b8347bd","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"36ecb19439af20bd","name":"stdout","source":"36ecb19439af20bd.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a2e66c48b8347bd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a2ff67830434b9af.json b/allure-report/data/test-cases/a2ff67830434b9af.json new file mode 100644 index 00000000000..b1cf42a384a --- /dev/null +++ b/allure-report/data/test-cases/a2ff67830434b9af.json @@ -0,0 +1 @@ +{"uid":"a2ff67830434b9af","name":"Testing men_from_boys function","fullName":"kyu_7.sort_out_the_men_from_boys.test_men_from_boys.MenFromBoysTestCase#test_men_from_boys","historyId":"94e7f25439d88c0d2dae964ef4a033cd","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"description":"\n Testing men_from_boys function with\n various test inputs\n\n Scenario\n Now that the competition gets tough it\n will Sort out the men from the boys .\n\n Men are the Even numbers and Boys are\n the odd !alt !alt\n\n Task\n Given an array/list [] of n integers ,\n Separate The even numbers from the odds ,\n or Separate the men from the boys !alt !alt\n\n Notes\n Return an array/list where Even numbers\n come first then odds.\n Since , Men are stronger than Boys ,\n Then Even numbers in ascending order\n While odds in descending.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732428194231,"stop":1732428194231,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732428194255,"stop":1732428194255,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"story","value":"Find the safest places in town"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"a30e32170a464ad0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a32047be9db53ed6.json b/allure-report/data/test-cases/a32047be9db53ed6.json new file mode 100644 index 00000000000..0a77b75974b --- /dev/null +++ b/allure-report/data/test-cases/a32047be9db53ed6.json @@ -0,0 +1 @@ +{"uid":"a32047be9db53ed6","name":"Testing the 'sort_array' function","fullName":"kyu_6.sort_the_odd.test_sort_array.SortArrayTestCase#test_sort_array","historyId":"ac7e79f0af8659ddbaffd6954aed70a9","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"173c8b3804a43ebd","name":"stdout","source":"173c8b3804a43ebd.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sort the odd"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"a32047be9db53ed6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a33fb2570aec1823.json b/allure-report/data/test-cases/a33fb2570aec1823.json deleted file mode 100644 index 54d0ce923b6..00000000000 --- a/allure-report/data/test-cases/a33fb2570aec1823.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a33fb2570aec1823","name":"Testing 'DefaultList' class: pop","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_pop","historyId":"e9bfe5ed84336ceb50e9a2cd6d3752ed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pop an un-existing item and verify the result","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"7aad212f16ce4ea2","name":"stdout","source":"7aad212f16ce4ea2.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1585a2916e07d272","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"a33fb2570aec1823.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a37b17c93d1df521.json b/allure-report/data/test-cases/a37b17c93d1df521.json deleted file mode 100644 index c90dd61d4e6..00000000000 --- a/allure-report/data/test-cases/a37b17c93d1df521.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a37b17c93d1df521","name":"a or b is negative","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_negative_numbers","historyId":"2889ca714f21625b11b311b780ead719","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1732764218886,"stop":1732764218886,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1732764218912,"stop":1732764218912,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Find the safest places in town"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"a3e837b6100ae0c4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a42793a5da57f5c7.json b/allure-report/data/test-cases/a42793a5da57f5c7.json deleted file mode 100644 index 96f5961315d..00000000000 --- a/allure-report/data/test-cases/a42793a5da57f5c7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a42793a5da57f5c7","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1732428194039,"stop":1732428194039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1732428194040,"stop":1732428194040,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1732428194042,"stop":1732428194042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"feature","value":"Validation"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"VALIDATION"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"a4aa1c9fe84c9cc9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a4c528481d776554.json b/allure-report/data/test-cases/a4c528481d776554.json deleted file mode 100644 index b51bcd1874e..00000000000 --- a/allure-report/data/test-cases/a4c528481d776554.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a4c528481d776554","name":"move function tests","fullName":"kyu_8.terminal_game_move_function.test_terminal_game_move_function.MoveTestCase#test_move","historyId":"c589035c90d432fb71a99aec4f56ee9e","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"description":"\n The player rolls the dice and moves the number\n of spaces indicated by the dice two times.\n\n Pass position and roll and compare the output\n to the expected result\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fa6ca2a58e326e7c","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0}},{"uid":"4db417c919f14dad","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1}},{"uid":"7d152505fce8fc34","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"6612fa568c338bff","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"99bd3e79aeea5636","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0}},{"uid":"371c743cf6f64f1d","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1}},{"uid":"26cf86ca9eda4b5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a4cb6a94c77f28ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5961784f4ddfa34.json b/allure-report/data/test-cases/a5961784f4ddfa34.json new file mode 100644 index 00000000000..bcde8c2efd2 --- /dev/null +++ b/allure-report/data/test-cases/a5961784f4ddfa34.json @@ -0,0 +1 @@ +{"uid":"a5961784f4ddfa34","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'thirt' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"732bf4c64788dac","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0}},{"uid":"691c776616074a7a","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0}},{"uid":"a2e66c48b8347bd","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"82e02fa0cc46fda7","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"62a6bbd8d87be20e","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0}},{"uid":"777edc280c74020d","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0}},{"uid":"585949d19b46a5d2","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"66f1b8d1e5ed1dbe","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"a5961784f4ddfa34.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5a7f52be4bf7369.json b/allure-report/data/test-cases/a5a7f52be4bf7369.json new file mode 100644 index 00000000000..57f2f977539 --- /dev/null +++ b/allure-report/data/test-cases/a5a7f52be4bf7369.json @@ -0,0 +1 @@ +{"uid":"a5a7f52be4bf7369","name":"Testing shark function (negative)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_bait","historyId":"83b78a44a84315eae8c56a708925a03e","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"c3dd54ea07cba973","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1}},{"uid":"9b6456a02fb8e586","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1}},{"uid":"9d10648422f3aeed","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"55719c1a41a634a4","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8dfef1ba8856d412","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1}},{"uid":"b67813f1cae4659e","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1}},{"uid":"cde5d1b46b10d7ac","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a5a7f52be4bf7369.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5e3b3442b4ab9dd.json b/allure-report/data/test-cases/a5e3b3442b4ab9dd.json deleted file mode 100644 index 5d7cf255170..00000000000 --- a/allure-report/data/test-cases/a5e3b3442b4ab9dd.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a5e3b3442b4ab9dd","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732764218791,"stop":1732764218791,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732764218797,"stop":1732764218797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"OOP"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"epic","value":"4 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"a5ef1e97378ae643.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a5efb61e311267c0.json b/allure-report/data/test-cases/a5efb61e311267c0.json deleted file mode 100644 index d83b2563d80..00000000000 --- a/allure-report/data/test-cases/a5efb61e311267c0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a5efb61e311267c0","name":"Testing 'save' function: negative","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_negative","historyId":"eb89ee17d2b7a29796b27ce5ba503de6","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"description":"\n Testing 'save' function: negative\n\n The function should determine how many\n files of the copy queue you will be able\n to save into your Hard Disk Drive.\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fac7406e86e2d594","name":"stdout","source":"fac7406e86e2d594.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"FUNCTIONS"},{"name":"suite","value":"Games"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"a65eaf9a40469196.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a66f07e5b377a93b.json b/allure-report/data/test-cases/a66f07e5b377a93b.json new file mode 100644 index 00000000000..c452aacb364 --- /dev/null +++ b/allure-report/data/test-cases/a66f07e5b377a93b.json @@ -0,0 +1 @@ +{"uid":"a66f07e5b377a93b","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an un-existing item and verify the result","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"4f80880da2e426c8","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2}},{"uid":"2d7cf0b0c2f46c3","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0}},{"uid":"247e42713d4388e5","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"e49d46057090e83e","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4438dce845a8b680","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2}},{"uid":"d9328098007f6ade","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0}},{"uid":"99a050e28b9f808c","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"a33fb2570aec1823","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"a6a651d904577cf4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6eaf13968162fc7.json b/allure-report/data/test-cases/a6eaf13968162fc7.json new file mode 100644 index 00000000000..8f3fc4c7539 --- /dev/null +++ b/allure-report/data/test-cases/a6eaf13968162fc7.json @@ -0,0 +1 @@ +{"uid":"a6eaf13968162fc7","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724733473171,"stop":1724733473186,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"c48ba88f01713cd9","name":"stdout","source":"c48ba88f01713cd9.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"a6eaf13968162fc7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a6ecb3b474360e70.json b/allure-report/data/test-cases/a6ecb3b474360e70.json new file mode 100644 index 00000000000..f52bb05d46a --- /dev/null +++ b/allure-report/data/test-cases/a6ecb3b474360e70.json @@ -0,0 +1 @@ +{"uid":"a6ecb3b474360e70","name":"Two smallest numbers in the start of the list","fullName":"kyu_7.sum_of_two_lowest_int.test_sum_two_smallest_numbers.SumTwoSmallestNumbersTestCase#test_sum_two_smallest_numbers","historyId":"429c2bf738c7d46e53c9a2e5226d6649","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"description":"\n Test sum_two_smallest_numbers function\n The function should return the sum of\n the two lowest positive numbers\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194678,"stop":1732428194678,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194679,"stop":1732428194679,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"a712aa917a11c1d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7151a5672bbc2f6.json b/allure-report/data/test-cases/a7151a5672bbc2f6.json deleted file mode 100644 index 7f1ccfa3111..00000000000 --- a/allure-report/data/test-cases/a7151a5672bbc2f6.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a7151a5672bbc2f6","name":"Testing 'count_sheeps' function: empty list","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_empty_list","historyId":"64d02b3be7358667808060e04863e8f8","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like empty list\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219332,"stop":1732764219332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219332,"stop":1732764219332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219332,"stop":1732764219332,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219333,"stop":1732764219333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"a72e2d4e966e7c09.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a7585b25b34695fe.json b/allure-report/data/test-cases/a7585b25b34695fe.json new file mode 100644 index 00000000000..1b705686b05 --- /dev/null +++ b/allure-report/data/test-cases/a7585b25b34695fe.json @@ -0,0 +1 @@ +{"uid":"a7585b25b34695fe","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"description":"\n Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Count IP Addresses"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"a7585b25b34695fe.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/a7645184155771ad.json b/allure-report/data/test-cases/a7645184155771ad.json
new file mode 100644
index 00000000000..ebc414d6425
--- /dev/null
+++ b/allure-report/data/test-cases/a7645184155771ad.json
@@ -0,0 +1 @@
+{"uid":"a7645184155771ad","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_false","historyId":"8c287dae332df512fc4a9755020ffedc","time":{"start":1724733474679,"stop":1724733474694,"duration":15},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return false if it is not a factor.\n :return:\n ","descriptionHtml":"Testing position property based on negative grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on negative grids\n ","descriptionHtml":"Testing position property based on negative grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"2cc31ac5154e0ba1","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0}},{"uid":"5f7165cd602afcbf","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0}},{"uid":"3bcfd32a26f68acf","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"6066d349be23d299","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472327,"stop":1724733472327,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":3,"unknown":0,"total":5},"items":[{"uid":"3e564e38813f1539","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0}},{"uid":"a76c277b6c0b5940","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0}},{"uid":"801bdccb4e1aa824","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"92b17e5074e54ef7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"a81b8ca7a7877717.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a83637127d81f7d9.json b/allure-report/data/test-cases/a83637127d81f7d9.json deleted file mode 100644 index d537214a310..00000000000 --- a/allure-report/data/test-cases/a83637127d81f7d9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a83637127d81f7d9","name":"test_random","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_random","historyId":"f9568f445cf6471d62f38f61a6e1887d","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"description":"\n Advanced/random test case\n :return:\n ","descriptionHtml":" Advanced/random test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Advanced/random test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c91447e2ab5b5752","name":"stdout","source":"c91447e2ab5b5752.txt","type":"text/plain","size":791}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"Algorithms"},{"name":"tag","value":"Strings"},{"name":"tag","value":"Logic"},{"name":"story","value":"Coloured Triangles"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"a83637127d81f7d9.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/a86267feca446780.json b/allure-report/data/test-cases/a86267feca446780.json
new file mode 100644
index 00000000000..5b38b727c87
--- /dev/null
+++ b/allure-report/data/test-cases/a86267feca446780.json
@@ -0,0 +1 @@
+{"uid":"a86267feca446780","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"description":"\n In this kata, you must create a digital root function.\n\n A digital root is the recursive sum of all the digits\n in a number. Given n, take the sum of the digits of n.\n If that value has more than one digit, continue reducing\n in this way until a single-digit number is produced. This\n is only applicable to the natural numbers.\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d2045a3977b6446a","name":"stdout","source":"d2045a3977b6446a.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"a8ac1a16737b16a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a8ada246e9141e4e.json b/allure-report/data/test-cases/a8ada246e9141e4e.json deleted file mode 100644 index 458420cded3..00000000000 --- a/allure-report/data/test-cases/a8ada246e9141e4e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"a8ada246e9141e4e","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"PUZZLES"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"35a3e561b98b1660","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0}},{"uid":"b3baec89064c3983","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1}},{"uid":"5f37f1e35250223f","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"93600ea56dc1843a","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1251fa1056fea3d4","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0}},{"uid":"1265911f14bcd919","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1}},{"uid":"98d0f495e6dcba7e","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"df3147d31fee6968","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"a90239b6ef90f6a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a912833bc91830ef.json b/allure-report/data/test-cases/a912833bc91830ef.json new file mode 100644 index 00000000000..f2c12d8ef64 --- /dev/null +++ b/allure-report/data/test-cases/a912833bc91830ef.json @@ -0,0 +1 @@ +{"uid":"a912833bc91830ef","name":"Testing increment_string function","fullName":"kyu_5.string_incrementer.test_increment_string.StringIncrementerTestCase#test_increment_string","historyId":"5d0f5e220c2579103119e57300b46215","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"description":"\n Testing a function named increment_string\n\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c243a724cee6015a","name":"stdout","source":"c243a724cee6015a.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"GAMES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"502fa7fe3b72cd9a","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"a921030da8c9a520.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a92222b0b7f4d601.json b/allure-report/data/test-cases/a92222b0b7f4d601.json new file mode 100644 index 00000000000..997a2229f2b --- /dev/null +++ b/allure-report/data/test-cases/a92222b0b7f4d601.json @@ -0,0 +1 @@ +{"uid":"a92222b0b7f4d601","name":"Testing make_readable function","fullName":"kyu_5.human_readable_time.test_make_readable.MakeReadableTestCase#test_make_readable","historyId":"ca529ab6c57db539179bf256595c3d50","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"description":"\n Testing make_readable function\n\n Write a function, which takes a non-negative integer\n (seconds) as input and returns the time in a human-readable\n format (HH:MM:SS)\n\n HH = hours, padded to 2 digits, range: 00 - 99\n MM = minutes, padded to 2 digits, range: 00 - 59\n SS = seconds, padded to 2 digits, range: 00 - 59\n\n The maximum time never exceeds 359999 (99:59:59)\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732428196453,"stop":1732428196453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1732428196453,"stop":1732428196453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1732428196453,"stop":1732428196453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1732428196456,"stop":1732428196456,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Will you make it?"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"a9aa7cc6bd5c34be.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9f0e43ae54089ff.json b/allure-report/data/test-cases/a9f0e43ae54089ff.json new file mode 100644 index 00000000000..3b4deeda8e7 --- /dev/null +++ b/allure-report/data/test-cases/a9f0e43ae54089ff.json @@ -0,0 +1 @@ +{"uid":"a9f0e43ae54089ff","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"description":"\n Test an algorithm that takes an array and moves all of the\n zeros to the end, preserving the order of the other elements.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e1e2028306699105","name":"stdout","source":"e1e2028306699105.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"story","value":"Directions Reduction"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"a9fa2bf5091c83a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/a9fe3e48d71bee45.json b/allure-report/data/test-cases/a9fe3e48d71bee45.json new file mode 100644 index 00000000000..8a776d7d239 --- /dev/null +++ b/allure-report/data/test-cases/a9fe3e48d71bee45.json @@ -0,0 +1 @@ +{"uid":"a9fe3e48d71bee45","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"description":"\n The function should return a formatted string.\n The return value should equal \"Value is VALUE\"\n where value is a 5 digit padded number.\n :return:\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732764218790,"stop":1732764218790,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732764218797,"stop":1732764218797,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"OOP"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"epic","value":"4 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"aa00c7be0a861177.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa0a102aebb2ddf0.json b/allure-report/data/test-cases/aa0a102aebb2ddf0.json new file mode 100644 index 00000000000..f6b9a44d31e --- /dev/null +++ b/allure-report/data/test-cases/aa0a102aebb2ddf0.json @@ -0,0 +1 @@ +{"uid":"aa0a102aebb2ddf0","name":"Testing 'feast' function","fullName":"kyu_8.the_feast_of_many_beasts.test_feast.FeastTestCase#test_feast","historyId":"963bc543b4e4096b877e161985d8949c","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"description":"\n Testing 'feast' function with various test inputs\n\n Testing a function feast that takes the animal's\n name and dish as arguments and returns true or\n false to indicate whether the beast is allowed\n to bring the dish to the feast.\n\n Assume that beast and dish are always lowercase strings,\n and that each has at least two letters. beast and dish\n may contain hyphens and spaces, but these will not appear\n at the beginning or end of the string. They will not\n contain numerals.\n\n There is just one rule: the dish must start and end with\n the same letters as the animal's name. For example, the\n great blue heron is bringing garlic naan and the chickadee\n is bringing chocolate cake.\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing stock_list function with various test data\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"story","value":"Help the bookseller !"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"65519c1899e60621","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0}},{"uid":"4c4230f8e0e384cc","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0}},{"uid":"ffafa17ec9b60c3d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"fa8c3ecdf2af6d24","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"64ddebaa5d6679fc","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0}},{"uid":"9267ea7150c527ef","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0}},{"uid":"1719ddf6913445c8","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"66511dda8143933e","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"aa0fd3e8d8009a95.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aa7d2e5e86b66673.json b/allure-report/data/test-cases/aa7d2e5e86b66673.json new file mode 100644 index 00000000000..32ba7ffe49c --- /dev/null +++ b/allure-report/data/test-cases/aa7d2e5e86b66673.json @@ -0,0 +1 @@ +{"uid":"aa7d2e5e86b66673","name":"String with no alphabet chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_no_alpha","historyId":"eb9123a4aa86a26d4fdbf67e2370745f","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"description":"\n Test string with no alphabet chars.\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"20ec3b37f02414c6","name":"stdout","source":"20ec3b37f02414c6.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Will you make it?"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"aad768e2b1065e77.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aade1eebfa7ac9cf.json b/allure-report/data/test-cases/aade1eebfa7ac9cf.json new file mode 100644 index 00000000000..3f45bfca7d8 --- /dev/null +++ b/allure-report/data/test-cases/aade1eebfa7ac9cf.json @@ -0,0 +1 @@ +{"uid":"aade1eebfa7ac9cf","name":"Wolf at the beginning of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_start","historyId":"dcabd02011959f0337d9098678ad990d","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"description":"\n If the wolf is the closest animal to you,\n return \"Pls go away and stop eating my sheep\".\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e0c62dc3071fe329","name":"stdout","source":"e0c62dc3071fe329.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sort the odd"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"aadfe826c6aeccf6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab2861d9bed3765e.json b/allure-report/data/test-cases/ab2861d9bed3765e.json new file mode 100644 index 00000000000..6aed942e98a --- /dev/null +++ b/allure-report/data/test-cases/ab2861d9bed3765e.json @@ -0,0 +1 @@ +{"uid":"ab2861d9bed3765e","name":"Testing two_decimal_places function","fullName":"kyu_8.formatting_decimal_places_0.test_two_decimal_places.TwoDecimalPlacesTestCase#test_two_decimal_places","historyId":"e3ba8e7dce83ab9de36ddd0bc268f4f6","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"description":"\n Testing two_decimal_places function\n with various test inputs.\n\n Each number should be formatted that it is\n rounded to two decimal places. You don't\n need to check whether the input is a valid\n number because only valid numbers are used\n in the tests.\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fd192e99e6a5065d","name":"stdout","source":"fd192e99e6a5065d.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Disease Spread"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"ab6068d2916c95e9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab7fe234dc976ac6.json b/allure-report/data/test-cases/ab7fe234dc976ac6.json new file mode 100644 index 00000000000..607dd89c412 --- /dev/null +++ b/allure-report/data/test-cases/ab7fe234dc976ac6.json @@ -0,0 +1 @@ +{"uid":"ab7fe234dc976ac6","name":"Testing easy_diagonal function","fullName":"kyu_6.easy_diagonal.test_diagonal.EasyDiagonalTestCase#test_easy_diagonal","historyId":"5d9c9166bf610b28a284723b5b23aab1","time":{"start":1724733473218,"stop":1724733473889,"duration":671},"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1724733473218,"stop":1724733473218,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6724f660007b6f8f","name":"stdout","source":"6724f660007b6f8f.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724733473889,"stop":1724733473889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Easy Diagonal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ab7fe234dc976ac6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ab9420b5e475e35.json b/allure-report/data/test-cases/ab9420b5e475e35.json new file mode 100644 index 00000000000..cb19644f90a --- /dev/null +++ b/allure-report/data/test-cases/ab9420b5e475e35.json @@ -0,0 +1 @@ +{"uid":"ab9420b5e475e35","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"description":"\n Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Permutations"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"PERMUTATIONS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ab9420b5e475e35.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/ab9ac5c7ad2aba25.json b/allure-report/data/test-cases/ab9ac5c7ad2aba25.json
deleted file mode 100644
index 851d8acef2b..00000000000
--- a/allure-report/data/test-cases/ab9ac5c7ad2aba25.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"ab9ac5c7ad2aba25","name":"Testing 'summation' function","fullName":"kyu_8.grasshopper_summation.test_summation.SummationTestCase#test_summation","historyId":"44ae966390833a332245c1886323c559","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"description":"\n Testing summation function\n with various test inputs\n :return:\n ","descriptionHtml":" In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 38, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Josephus Survivor"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"abbcc324b9e8a1ea.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/abe925767bdb0e39.json b/allure-report/data/test-cases/abe925767bdb0e39.json
new file mode 100644
index 00000000000..d5ede068aa3
--- /dev/null
+++ b/allure-report/data/test-cases/abe925767bdb0e39.json
@@ -0,0 +1 @@
+{"uid":"abe925767bdb0e39","name":"Testing permute_a_palindrome (positive)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_positive","historyId":"faf1054cf60e3f1fbb45c8dc0ece579f","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"86ab33dc86ae86c3","name":"stdout","source":"86ab33dc86ae86c3.txt","type":"text/plain","size":544}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"FUNCTIONS"},{"name":"suite","value":"Games"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"CONTROL FLOW"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"abf7d26758417bf9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/abfe637076f1879d.json b/allure-report/data/test-cases/abfe637076f1879d.json new file mode 100644 index 00000000000..c08ecaba740 --- /dev/null +++ b/allure-report/data/test-cases/abfe637076f1879d.json @@ -0,0 +1 @@ +{"uid":"abfe637076f1879d","name":"Testing array_diff function","fullName":"kyu_6.array_diff.test_array_diff.ArrayDiffTestCase#test_array_diff_function","historyId":"5e365f66b39a2fede4fe18a5cc569699","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1732428194561,"stop":1732428194561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Array.diff"},{"name":"tag","value":"LISTS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"abfe637076f1879d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac366a2ecd02d5dd.json b/allure-report/data/test-cases/ac366a2ecd02d5dd.json new file mode 100644 index 00000000000..0403b3c7856 --- /dev/null +++ b/allure-report/data/test-cases/ac366a2ecd02d5dd.json @@ -0,0 +1 @@ +{"uid":"ac366a2ecd02d5dd","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"description":"\n Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Count IP Addresses"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ac366a2ecd02d5dd.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/ac4b8e11c3d56a6a.json b/allure-report/data/test-cases/ac4b8e11c3d56a6a.json
new file mode 100644
index 00000000000..4de3c8957d8
--- /dev/null
+++ b/allure-report/data/test-cases/ac4b8e11c3d56a6a.json
@@ -0,0 +1 @@
+{"uid":"ac4b8e11c3d56a6a","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"description":"\n For a given string s find the character c (or C) with\n longest consecutive repetition and return: (c, l)\n where l (or L) is the length of the repetition.\n\n For empty string return: ('', 0)\n :return:\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"11f397a799a36e46","name":"stdout","source":"11f397a799a36e46.txt","type":"text/plain","size":601}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Range Extraction"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"ac66f87691632de7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ac824f903545a6e7.json b/allure-report/data/test-cases/ac824f903545a6e7.json new file mode 100644 index 00000000000..f5d1c61fcd0 --- /dev/null +++ b/allure-report/data/test-cases/ac824f903545a6e7.json @@ -0,0 +1 @@ +{"uid":"ac824f903545a6e7","name":"Testing move_zeros function","fullName":"kyu_5.moving_zeros_to_the_end.test_move_zeros.MoveZerosTestCase#test_move_zeros","historyId":"4d406a702da9fd827c8c4798d255a6cf","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"description":"\n Test an algorithm that takes an array and moves all of the\n zeros to the end, preserving the order of the other elements.\n :return:\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing solution function\n ","descriptionHtml":"Testing permutations function
Test the solution so that it takes a list of integers in increasing order and returns a correctly formatted string in the range format.
","status":"passed","steps":[{"name":"Enter a test list ([-6, -3, -2, -1, 0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 14, 15, 17, 18, 19, 20]) and verify the output (-6,-3-1,3-5,7-11,14,15,17-20) vs expected (-6,-3-1,3-5,7-11,14,15,17-20)","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-3, -2, -1, 2, 10, 15, 16, 18, 19, 20]) and verify the output (-3--1,2,10,15,16,18-20) vs expected (-3--1,2,10,15,16,18-20)","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test list ([-91, -90, -87, -84, -81, -78, -77, -76, -74, -72, -70, -69, -66, -65, -63, -60, -58, -57, -54]) and verify the output (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54) vs expected (-91,-90,-87,-84,-81,-78--76,-74,-72,-70,-69,-66,-65,-63,-60,-58,-57,-54)","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764218656,"stop":1732764218656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRING"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Range Extraction"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"FORMATTING"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.range_extraction.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51ba717bb08c1cd60f00002f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},"source":"ac8d0c005e499da5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aca9d99cb0e5842e.json b/allure-report/data/test-cases/aca9d99cb0e5842e.json deleted file mode 100644 index 6416de25600..00000000000 --- a/allure-report/data/test-cases/aca9d99cb0e5842e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"aca9d99cb0e5842e","name":"Testing alphabet_war function","fullName":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war.AlphabetWarTestCase#test_alphabet_war","historyId":"10af3a5c9f6fb077c8237771f4b70e20","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"3113bb39449ddf28","name":"stdout","source":"3113bb39449ddf28.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"DECLARATIVE"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"LANGUAGE"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PROGRAMMING"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FEATURES"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ADVANCED"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ffa8274e0de065ab","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},"source":"aca9d99cb0e5842e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acad0a25b607c9fe.json b/allure-report/data/test-cases/acad0a25b607c9fe.json new file mode 100644 index 00000000000..1f07eed8bc9 --- /dev/null +++ b/allure-report/data/test-cases/acad0a25b607c9fe.json @@ -0,0 +1 @@ +{"uid":"acad0a25b607c9fe","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e51eb49b458f8b30","name":"stdout","source":"e51eb49b458f8b30.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"acad0a25b607c9fe.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/acc544bb5166af1c.json b/allure-report/data/test-cases/acc544bb5166af1c.json deleted file mode 100644 index 5d5e6316cc1..00000000000 --- a/allure-report/data/test-cases/acc544bb5166af1c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"acc544bb5166af1c","name":"Testing invite_more_women function (positive)","fullName":"kyu_7.simple_fun_152.test_invite_more_women.InviteMoreWomenTestCase#test_invite_more_women_positive","historyId":"d8680aad50eda2b69694580584e0455f","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"85584e5ea4131ab","name":"stdout","source":"85584e5ea4131ab.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"INTEGERS"},{"name":"feature","value":"Aggregations"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"AGGREGATIONS"},{"name":"story","value":"Sum of Intervals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d611744698a52752","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"acc95e26a53d92ff.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad08cb0fb6eef203.json b/allure-report/data/test-cases/ad08cb0fb6eef203.json deleted file mode 100644 index f51866315b3..00000000000 --- a/allure-report/data/test-cases/ad08cb0fb6eef203.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ad08cb0fb6eef203","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 24, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Diophantine Equation"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"83e3620464a462e0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ad08cb0fb6eef203.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad12195e4f930686.json b/allure-report/data/test-cases/ad12195e4f930686.json deleted file mode 100644 index 838fa3d3b9a..00000000000 --- a/allure-report/data/test-cases/ad12195e4f930686.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ad12195e4f930686","name":"Testing invite_more_women function (positive)","fullName":"kyu_7.simple_fun_152.test_invite_more_women.InviteMoreWomenTestCase#test_invite_more_women_positive","historyId":"d8680aad50eda2b69694580584e0455f","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"description":"\n Simple Fun #152: Invite More Women?\n Testing invite_more_women function (positive)\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"tag","value":"UTILS"},{"name":"feature","value":"Utils"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PRIMES"},{"name":"story","value":"Testing is_prime util"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"b591ce46c92300fc","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1}},{"uid":"b1ed0faa67962e1c","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0}},{"uid":"87664723e6f57cb6","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"405571045d735c93","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4710cc2182eb85cb","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1}},{"uid":"54bb63fb3736b8ae","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0}},{"uid":"b97e3a9bf54f17f3","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"73d92f8f0c07772d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"ad3e6b6eddb975ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ad642268f112be60.json b/allure-report/data/test-cases/ad642268f112be60.json new file mode 100644 index 00000000000..d6d491b574f --- /dev/null +++ b/allure-report/data/test-cases/ad642268f112be60.json @@ -0,0 +1 @@ +{"uid":"ad642268f112be60","name":"Testing 'sum_triangular_numbers' with positive numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_positive_numbers","historyId":"135e62f837ca5fe30ddfd2ad875e089b","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with positive numbers\n :return:\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"afd9bf5ba31b7f2c","name":"stdout","source":"afd9bf5ba31b7f2c.txt","type":"text/plain","size":1009}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"Snail"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"ad991ec2a2bdb70.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/adba958b88eb7661.json b/allure-report/data/test-cases/adba958b88eb7661.json new file mode 100644 index 00000000000..3ed4550ab0c --- /dev/null +++ b/allure-report/data/test-cases/adba958b88eb7661.json @@ -0,0 +1 @@ +{"uid":"adba958b88eb7661","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"6369af4634ea6437","name":"stdout","source":"6369af4634ea6437.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Greek Sort"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Tuple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"adba958b88eb7661.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/add9ef76ac7e1779.json b/allure-report/data/test-cases/add9ef76ac7e1779.json new file mode 100644 index 00000000000..d0b2b7b27df --- /dev/null +++ b/allure-report/data/test-cases/add9ef76ac7e1779.json @@ -0,0 +1 @@ +{"uid":"add9ef76ac7e1779","name":"Zero","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_zero","historyId":"e47953912bc73286c8a01ce448ee3c54","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Insert items to the list","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219344,"stop":1732764219344,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"ae9de108d4c0920c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aea42439e3c082b4.json b/allure-report/data/test-cases/aea42439e3c082b4.json new file mode 100644 index 00000000000..29a6d03dde7 --- /dev/null +++ b/allure-report/data/test-cases/aea42439e3c082b4.json @@ -0,0 +1 @@ +{"uid":"aea42439e3c082b4","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"68907a6eac7b7e79","name":"stdout","source":"68907a6eac7b7e79.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Strings Mix"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"aea42439e3c082b4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aeae161caad1a65f.json b/allure-report/data/test-cases/aeae161caad1a65f.json new file mode 100644 index 00000000000..3cb0056aac4 --- /dev/null +++ b/allure-report/data/test-cases/aeae161caad1a65f.json @@ -0,0 +1 @@ +{"uid":"aeae161caad1a65f","name":"get_size function tests","fullName":"kyu_8.surface_area_and_volume_of_box.test_get_size.GetSizeTestCase#test_get_size","historyId":"ecc1f7419b2f77621f5c909f1d0df9a9","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"description":"\n Testing get_size function with various inputs\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"51e235954e2b24e9","name":"stdout","source":"51e235954e2b24e9.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Array.diff"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"aee1417e53524250.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/aee4538f6230f980.json b/allure-report/data/test-cases/aee4538f6230f980.json deleted file mode 100644 index 95c98eeb5bc..00000000000 --- a/allure-report/data/test-cases/aee4538f6230f980.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"aee4538f6230f980","name":"Testing password function","fullName":"kyu_7.password_validator.test_password.PasswordTestCase#test_password","historyId":"aaef6593296fd19246b6caa71f38ecab","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"description":"\n Testing password function with various test inputs\n :return:\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isogram and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string aba and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string moOse and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the result","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Isograms"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d9035fa8f853a08a","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0}},{"uid":"a293120689451651","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0}},{"uid":"59d6a997f5b4aca5","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"ee3705e6f9b5a9fb","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"30977e1fdeed6f0a","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0}},{"uid":"2c6c8c712bf1892f","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0}},{"uid":"cd862d92408a60a2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"3bd61bc704b417e2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"af16ce1f4d774662.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af191d67a3f53ad3.json b/allure-report/data/test-cases/af191d67a3f53ad3.json deleted file mode 100644 index f23bd10e558..00000000000 --- a/allure-report/data/test-cases/af191d67a3f53ad3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"af191d67a3f53ad3","name":"'multiply' function verification with random list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_random_list","historyId":"be99c6f72cdf623836966737dcb7a654","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"description":"\n Returns a list that misses only one element\n :return:\n ","descriptionHtml":" Testing Walker class\n Testing starting position property based on negative grids\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_walker.py', 89, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"af2006fa8ad3035d.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/af3a43fc31649664.json b/allure-report/data/test-cases/af3a43fc31649664.json
new file mode 100644
index 00000000000..f84165ede4a
--- /dev/null
+++ b/allure-report/data/test-cases/af3a43fc31649664.json
@@ -0,0 +1 @@
+{"uid":"af3a43fc31649664","name":"Testing sum_for_list function","fullName":"kyu_4.sum_by_factors.test_sum_for_list.SumForListTestCase#test_sum_for_list","historyId":"d8ed55046475c7e2ae8edf6bff7b1316","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1733030098771,"stop":1733030098771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1733030098771,"stop":1733030098771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1733030098771,"stop":1733030098771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1733030098771,"stop":1733030098771,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1733030098849,"stop":1733030098849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1733030098849,"stop":1733030098849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1733030098849,"stop":1733030098849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1733030098849,"stop":1733030098849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1733030098849,"stop":1733030098849,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"NUMBERS"},{"name":"story","value":"Sum by Factors"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Competent"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9546971ec41b8ce1","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55}},{"uid":"4ade5d7baabdb848","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60}},{"uid":"2ff548416f63af86","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"f2960499936046d9","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7331de8e7202ad57","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55}},{"uid":"aa08a95162404297","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60}},{"uid":"82619e3fb0e84d4d","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"521b14729542d5c4","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}}]},"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"af3a43fc31649664.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af3c309699fc2b8b.json b/allure-report/data/test-cases/af3c309699fc2b8b.json deleted file mode 100644 index 9fbc7dd00fc..00000000000 --- a/allure-report/data/test-cases/af3c309699fc2b8b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"af3c309699fc2b8b","name":"Testing validSolution","fullName":"kyu_4.sudoku_solution_validator.test_valid_solution.ValidSolutionTestCase#test_valid_solution","historyId":"a5e357785cf7a1184adb35707a6c5d0c","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f242bfa987012064","name":"stdout","source":"f242bfa987012064.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Validation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"93145ed3e3e64e21","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0}}],"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"af3c309699fc2b8b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/af5a357d104e13f2.json b/allure-report/data/test-cases/af5a357d104e13f2.json deleted file mode 100644 index 54d881e59e9..00000000000 --- a/allure-report/data/test-cases/af5a357d104e13f2.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"af5a357d104e13f2","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing fix_the_meerkat function with various test data\n :return:\n ","descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"LISTS"},{"name":"feature","value":"Lists"},{"name":"story","value":"My head is at the wrong end!"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5cbc168dcad54c45","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0}},{"uid":"88ca13ae93cc2b33","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0}},{"uid":"f9e3772c62ee9c71","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"e15a7b3e54da206a","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1f1df83d6cc10b66","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0}},{"uid":"9c241cc9403723af","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0}},{"uid":"deed80da6e08bd69","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"1152e12f582a6d83","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"afc8e5dacd30bc41.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/afdaa298aab7eba8.json b/allure-report/data/test-cases/afdaa298aab7eba8.json deleted file mode 100644 index b2e72df2e4e..00000000000 --- a/allure-report/data/test-cases/afdaa298aab7eba8.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"afdaa298aab7eba8","name":"Testing 'mix' function","fullName":"kyu_4.strings_mix.test_mix.MixTestCase#test_smix","historyId":"76cb71724bbc5595b66f218e2f828c5d","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9a6a869c56ca7757","name":"stdout","source":"9a6a869c56ca7757.txt","type":"text/plain","size":882}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Strings Mix"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77d55c76ce916d94","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"afdaa298aab7eba8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b00d5d40ec75b250.json b/allure-report/data/test-cases/b00d5d40ec75b250.json new file mode 100644 index 00000000000..93a222a1fac --- /dev/null +++ b/allure-report/data/test-cases/b00d5d40ec75b250.json @@ -0,0 +1 @@ +{"uid":"b00d5d40ec75b250","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472843,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472843,"stop":1724733472890,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724733472890,"stop":1724733472921,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"444e3c5fd77d103","name":"stdout","source":"444e3c5fd77d103.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Optimization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Integers: Recreation One"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"b01a24c8d7b81de4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b0395834a1dc7266.json b/allure-report/data/test-cases/b0395834a1dc7266.json new file mode 100644 index 00000000000..941fe48ca21 --- /dev/null +++ b/allure-report/data/test-cases/b0395834a1dc7266.json @@ -0,0 +1 @@ +{"uid":"b0395834a1dc7266","name":"Testing calculate function","fullName":"kyu_7.basic_math_add_or_subtract.test_calculate.CalculateTestCase#test_calculate","historyId":"bd0f38e5388cf4a636a9393d435770b8","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate function with various test data\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9b5e6753141602b8","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0}},{"uid":"7de3e61f9ee174a3","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1}},{"uid":"7cacdad83c7f5f10","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"da87c785a6ba7322","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1857a7ece8075aa5","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0}},{"uid":"fbd37fe4a302b125","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1}},{"uid":"490cf50ddd5cff83","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"7f4f9e94ec6d4f1e","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"b0395834a1dc7266.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b04dd834a1d39093.json b/allure-report/data/test-cases/b04dd834a1d39093.json deleted file mode 100644 index 545a5003bc6..00000000000 --- a/allure-report/data/test-cases/b04dd834a1d39093.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b04dd834a1d39093","name":"String with alphabet chars only","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_alpha_only","historyId":"f1e3ad74179a106b1d5dc35a6ffe21fa","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"description":"\n Test string with alphabet chars only\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732764218860,"stop":1732764218860,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function dir_reduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['NORTH', 'SOUTH', 'SOUTH', 'EAST', 'WEST', 'NORTH', 'WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'EAST', 'NORTH', 'EAST', 'WEST', 'WEST', 'EAST', 'EAST', 'WEST', 'SOUTH']) and verify the output (['NORTH', 'EAST']) vs expected (['NORTH', 'EAST'])","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['EAST', 'NORTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'SOUTH', 'NORTH', 'NORTH', 'SOUTH', 'WEST', 'NORTH', 'EAST', 'WEST', 'WEST', 'WEST', 'EAST', 'SOUTH', 'SOUTH']) and verify the output (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH']) vs expected (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH'])","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['WEST', 'NORTH', 'EAST', 'EAST', 'EAST', 'EAST', 'WEST', 'WEST', 'WEST', 'WEST', 'NORTH', 'NORTH', 'SOUTH', 'EAST']) and verify the output (['WEST', 'NORTH', 'NORTH', 'EAST']) vs expected (['WEST', 'NORTH', 'NORTH', 'EAST'])","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1732764218862,"stop":1732764218862,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Directions Reduction"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"b0da8ff80b8db87.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b14acb4de8eb0e3a.json b/allure-report/data/test-cases/b14acb4de8eb0e3a.json deleted file mode 100644 index fcbdd51cfb0..00000000000 --- a/allure-report/data/test-cases/b14acb4de8eb0e3a.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b14acb4de8eb0e3a","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_true","historyId":"c8ef830d4279bee02e53bf3a04349c35","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return true if it is a factor.\n :return:\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1732764218682,"stop":1732764218682,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1732764218683,"stop":1732764218683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1732764218683,"stop":1732764218683,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1732764218685,"stop":1732764218685,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Strip Comments"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"b1b08a9c0991d73d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b1b4ed481e88bb25.json b/allure-report/data/test-cases/b1b4ed481e88bb25.json new file mode 100644 index 00000000000..1017796f313 --- /dev/null +++ b/allure-report/data/test-cases/b1b4ed481e88bb25.json @@ -0,0 +1 @@ +{"uid":"b1b4ed481e88bb25","name":"Testing first_non_repeated function with various inputs","fullName":"kyu_7.the_first_non_repeated_character_in_string.test_first_non_repeated.FirstNonRepeatedTestCase#test_first_non_repeated","historyId":"9398abf0c9f75b70331fc87dcc2b8a7f","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"description":"\n Testing first_non_repeated function\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732428196491,"stop":1732428196491,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Utils"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"No kyu"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"b1ed0faa67962e1c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b2086dbec02630b0.json b/allure-report/data/test-cases/b2086dbec02630b0.json deleted file mode 100644 index 061350e8d6d..00000000000 --- a/allure-report/data/test-cases/b2086dbec02630b0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b2086dbec02630b0","name":"Testing permute_a_palindrome (positive)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_positive","historyId":"faf1054cf60e3f1fbb45c8dc0ece579f","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"description":"\n Testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"b35458785abd4d83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3654581f89b5576.json b/allure-report/data/test-cases/b3654581f89b5576.json new file mode 100644 index 00000000000..16baa6c23a4 --- /dev/null +++ b/allure-report/data/test-cases/b3654581f89b5576.json @@ -0,0 +1 @@ +{"uid":"b3654581f89b5576","name":"Testing the 'unique_in_order' function","fullName":"kyu_6.unique_in_order.test_unique_in_order.UniqueInOrderTestCase#test_unique_in_order","historyId":"9cff2d5d4d73fbc92b1c7c29d738384f","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"PERMUTATIONS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"Permutations"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"b37adbf845502fe8.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/b3ab40391b5da28d.json b/allure-report/data/test-cases/b3ab40391b5da28d.json
deleted file mode 100644
index 44f4fbfb7ae..00000000000
--- a/allure-report/data/test-cases/b3ab40391b5da28d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"b3ab40391b5da28d","name":"Testing 'DefaultList' class: remove","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_remove","historyId":"15037a348eb4a5d132a73e93b09318c1","time":{"start":1724733473171,"stop":1724733473186,"duration":15},"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Remove items from the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bf66b96af215b9a3","name":"stdout","source":"bf66b96af215b9a3.txt","type":"text/plain","size":254}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"b3ab40391b5da28d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3baec89064c3983.json b/allure-report/data/test-cases/b3baec89064c3983.json new file mode 100644 index 00000000000..ebc86d5d481 --- /dev/null +++ b/allure-report/data/test-cases/b3baec89064c3983.json @@ -0,0 +1 @@ +{"uid":"b3baec89064c3983","name":"Testing done_or_not function","fullName":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku.DidIFinishedSudokuTestCase#test_done_or_not","historyId":"7c59feaf54bd4089e056f041844e3fe6","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1732428194179,"stop":1732428194179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter sudoku and verify the output.","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1732428194180,"stop":1732428194180,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"tag","value":"LOOPS"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Control Flow"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"b3baec89064c3983.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b3f7088fed8dedd7.json b/allure-report/data/test-cases/b3f7088fed8dedd7.json deleted file mode 100644 index a2d4a329f93..00000000000 --- a/allure-report/data/test-cases/b3f7088fed8dedd7.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b3f7088fed8dedd7","name":"Testing epidemic function","fullName":"kyu_6.disease_spread.test_epidemic.EpidemicTestCase#test_epidemic","historyId":"e2edeca1f212268fe8082320adfcc98c","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"afa5523631c32cdd","name":"stdout","source":"afa5523631c32cdd.txt","type":"text/plain","size":1093}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Disease Spread"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2f476988eff12f93","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"b3f7088fed8dedd7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b40f27be3da7edd7.json b/allure-report/data/test-cases/b40f27be3da7edd7.json new file mode 100644 index 00000000000..a9318c836a3 --- /dev/null +++ b/allure-report/data/test-cases/b40f27be3da7edd7.json @@ -0,0 +1 @@ +{"uid":"b40f27be3da7edd7","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_false","historyId":"8c287dae332df512fc4a9755020ffedc","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return false if it is not a factor.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1732764218810,"stop":1732764218810,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"VALIDATION"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Control Flow"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"b4318b89966fb16.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b43edc8fd032be6e.json b/allure-report/data/test-cases/b43edc8fd032be6e.json new file mode 100644 index 00000000000..c9487fd0634 --- /dev/null +++ b/allure-report/data/test-cases/b43edc8fd032be6e.json @@ -0,0 +1 @@ +{"uid":"b43edc8fd032be6e","name":"Testing the 'pyramid' function","fullName":"kyu_6.pyramid_array.test_pyramid_array.PyramidTestCase#test_pyramid","historyId":"73977fc23d0427de5570dbdeaca30321","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"description":"\n The 'pyramid' function should return\n an Array of ascending length subarrays.\n\n Note: the subarrays should be filled with 1s.\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n The 'sort_array' function.\n\n The task is to sort ascending odd numbers but\n even numbers must be on their places.\n\n Zero isn't an odd number and you don't need to\n move it. If you have an empty array, you need\n to return it.\n\n :return:\n ","descriptionHtml":"The task is to sort ascending odd numbers but even numbers must be on their places.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"114c74c53ed8174f","name":"stdout","source":"114c74c53ed8174f.txt","type":"text/plain","size":243}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SortArrayTestCase::0","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sort the odd"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.sort_the_odd.test_sort_array"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/578aa45ee9fd15ff4600090d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ARRAYS"]},"source":"b54ad09f549aa423.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b56ab9fe385db93a.json b/allure-report/data/test-cases/b56ab9fe385db93a.json new file mode 100644 index 00000000000..8e811374b8c --- /dev/null +++ b/allure-report/data/test-cases/b56ab9fe385db93a.json @@ -0,0 +1 @@ +{"uid":"b56ab9fe385db93a","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"description":"\n Testing 'save' function: positive\n\n The function should determine how many\n files of the copy queue you will be able\n to save into your Hard Disk Drive.\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1732764221357,"stop":1732764221357,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1732764221358,"stop":1732764221358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1732764221363,"stop":1732764221363,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"story","value":"Testing is_prime util"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"b591ce46c92300fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b59318a9c97ef9f1.json b/allure-report/data/test-cases/b59318a9c97ef9f1.json new file mode 100644 index 00000000000..1f9fc107b84 --- /dev/null +++ b/allure-report/data/test-cases/b59318a9c97ef9f1.json @@ -0,0 +1 @@ +{"uid":"b59318a9c97ef9f1","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"99c79ea3adfa82ee","name":"stdout","source":"99c79ea3adfa82ee.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Array to HTML table"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9bb9bf100d008741","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"b78c37ec3b0f496f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b79318ff2ae67fee.json b/allure-report/data/test-cases/b79318ff2ae67fee.json new file mode 100644 index 00000000000..d8426fdda58 --- /dev/null +++ b/allure-report/data/test-cases/b79318ff2ae67fee.json @@ -0,0 +1 @@ +{"uid":"b79318ff2ae67fee","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"Josephus Survivor"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"b7aabddcd2b39bc4.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/b7eddfa61552d783.json b/allure-report/data/test-cases/b7eddfa61552d783.json
new file mode 100644
index 00000000000..1ca1b7f80b7
--- /dev/null
+++ b/allure-report/data/test-cases/b7eddfa61552d783.json
@@ -0,0 +1 @@
+{"uid":"b7eddfa61552d783","name":"Testing 'shortest_job_first(' function","fullName":"kyu_6.scheduling.test_solution.SJFTestCase#test_sjf","historyId":"da4a41f0bf9943ee34282e89227dd9a2","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase","time":{"start":1732764220300,"stop":1732764220300,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'shortest_job_first' function with various test data\n :return:\n ","descriptionHtml":"Test a function that processes sequence of jobs and returns a positive integer representing the cc ittakes to complete the job at index.
","status":"passed","steps":[{"name":"Enter a n (([0], 0)) and verify the expected output (100) vs actual result (100)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 10, 20, 0, 0], 0)) and verify the expected output (6) vs actual result (6)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 10, 20, 0, 0], 1)) and verify the expected output (16) vs actual result (16)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 0, 0, 20, 0, 0], 2)) and verify the expected output (26) vs actual result (26)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([20, 20, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 19, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 0, 19, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 18, 0, 0], 75)) and verify the expected output (1008) vs actual result (1008)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a n (([0, 13, 13, 12, 17, 0, 15, 0, 12, 0, 15, 0, 0, 12, 19, 11, 10, 0, 11, 18, 0, 0, 15, 20, 0, 16, 12, 17, 0, 0, 10, 19, 0, 9, 0, 16, 19, 16, 15, 0, 17, 0, 13, 11, 19, 18, 13, 10, 0, 20, 0, 10, 9, 18, 14, 18, 0, 15, 17, 10, 17, 0, 0, 0, 18, 0, 0, 19, 14, 0, 0, 19, 19, 0, 0, 0, 0, 0, 9, 18, 0, 0, 11, 16, 0, 0, 0, 0, 10, 0, 17, 0, 16, 0, 0, 0, 16, 0, 13, 20, 0, 20, 20, 0, 0, 20, 14, 0, 11, 0, 9, 0, 0, 20, 11, 17, 0, 12, 13, 16, 13, 19, 0, 18, 20, 0, 19, 10, 19, 12, 0, 18, 0, 14, 9, 0, 0, 0, 13, 14, 9, 18, 9, 11, 19, 10, 20, 17, 13, 0, 13, 0, 12, 0, 19, 0, 14, 0, 20, 0, 14, 12, 11, 18, 0, 0, 9, 0, 19], 24)) and verify the expected output (275) vs actual result (275)","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SJFTestCase::0","time":{"start":1732764220305,"stop":1732764220305,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Scheduling (Shortest Job First or SJF)"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"QUEUES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"tag","value":"SCHEDULING"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.scheduling.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550cc572b9e7b563be00054f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},"source":"b7eddfa61552d783.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b81b0ae77ee26a61.json b/allure-report/data/test-cases/b81b0ae77ee26a61.json new file mode 100644 index 00000000000..e003c421f3d --- /dev/null +++ b/allure-report/data/test-cases/b81b0ae77ee26a61.json @@ -0,0 +1 @@ +{"uid":"b81b0ae77ee26a61","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1732428194139,"stop":1732428194139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1732428194147,"stop":1732428194147,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"OOP"},{"name":"tag","value":"ALGORITHMS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"The Greatest Warrior"},{"name":"tag","value":"RULES"},{"name":"tag","value":"CLASSES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"b81b0ae77ee26a61.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b82b2a2c9febe0c6.json b/allure-report/data/test-cases/b82b2a2c9febe0c6.json new file mode 100644 index 00000000000..138dabfd9c1 --- /dev/null +++ b/allure-report/data/test-cases/b82b2a2c9febe0c6.json @@ -0,0 +1 @@ +{"uid":"b82b2a2c9febe0c6","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"47f787d5d2d88cb3","name":"stdout","source":"47f787d5d2d88cb3.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"b82b2a2c9febe0c6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b843b5b7994550ed.json b/allure-report/data/test-cases/b843b5b7994550ed.json deleted file mode 100644 index dac93562f2b..00000000000 --- a/allure-report/data/test-cases/b843b5b7994550ed.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b843b5b7994550ed","name":"Test with one char only","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_one_char","historyId":"e3d629a995491cb3a3079998a04583ff","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"description":"\n Test with one char only\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"b89f1a91511e43fe.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/b8c210754da93c52.json b/allure-report/data/test-cases/b8c210754da93c52.json
new file mode 100644
index 00000000000..1d01111b846
--- /dev/null
+++ b/allure-report/data/test-cases/b8c210754da93c52.json
@@ -0,0 +1 @@
+{"uid":"b8c210754da93c52","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_false","historyId":"8c287dae332df512fc4a9755020ffedc","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return false if it is not a factor.\n :return:\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f04c5edec457b138","name":"stdout","source":"f04c5edec457b138.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"The Greatest Warrior"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"RULES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},"source":"b8d68faa427e9f9d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b8f26140fdddc630.json b/allure-report/data/test-cases/b8f26140fdddc630.json new file mode 100644 index 00000000000..2c91c33b519 --- /dev/null +++ b/allure-report/data/test-cases/b8f26140fdddc630.json @@ -0,0 +1 @@ +{"uid":"b8f26140fdddc630","name":"Testing litres function with various test inputs","fullName":"kyu_8.keep_hydrated.test_keep_hydrated.KeepHydratedTestCase#test_keep_hydrated","historyId":"d2c9cdacf9fca346eec2858cd44275e6","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"description":"\n Testing litres function with various test inputs\n :return:\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'snail' function\n\n Given an n x n array, 'snail' function should return the array\n elements arranged from outermost elements to the middle element,\n traveling clockwise.\n ","descriptionHtml":"Verify that 'snail' function returns the array elements arranged from outermost elements to the middle element, traveling clockwise
","status":"passed","steps":[{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test array and verify the output vs expected result","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SnailTestCase::0","time":{"start":1732428194017,"stop":1732428194017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Snail"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.snail.test_snail"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/521c2db8ddc89b9b7a0000c1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},"source":"b91b3028c146d7df.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b92f0db6c4ee4ff0.json b/allure-report/data/test-cases/b92f0db6c4ee4ff0.json new file mode 100644 index 00000000000..ad7892b4558 --- /dev/null +++ b/allure-report/data/test-cases/b92f0db6c4ee4ff0.json @@ -0,0 +1 @@ +{"uid":"b92f0db6c4ee4ff0","name":"Testing format_duration","fullName":"kyu_4.human_readable_duration_format.test_format_duration.FormatDurationTestCase#test_format_duration","historyId":"7175898242492ec1d3bdd5698d625ca4","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function which formats a duration,\n given as a number of seconds, in a human-friendly way.\n\n The function must accept a non-negative integer.\n If it is zero, it just returns \"now\". Otherwise,\n the duration is expressed as a combination of years,\n days, hours, minutes and seconds.\n :return:\n ","descriptionHtml":"Test a function which formats a duration, given as a number of seconds, in a human-friendly way.
The function must accept a non-negative integer. If it is zero, it just returns \"now\". Otherwise, the duration is expressed as a combination of years, days, hours, minutes and seconds.
","status":"passed","steps":[{"name":"Enter seconds (1) and verify the expected output (1 second) vs actual result (1 second)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (62) and verify the expected output (1 minute and 2 seconds) vs actual result (1 minute and 2 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (120) and verify the expected output (2 minutes) vs actual result (2 minutes)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3600) and verify the expected output (1 hour) vs actual result (1 hour)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (3662) and verify the expected output (1 hour, 1 minute and 2 seconds) vs actual result (1 hour, 1 minute and 2 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (15731080) and verify the expected output (182 days, 1 hour, 44 minutes and 40 seconds) vs actual result (182 days, 1 hour, 44 minutes and 40 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (132030240) and verify the expected output (4 years, 68 days, 3 hours and 4 minutes) vs actual result (4 years, 68 days, 3 hours and 4 minutes)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (205851834) and verify the expected output (6 years, 192 days, 13 hours, 3 minutes and 54 seconds) vs actual result (6 years, 192 days, 13 hours, 3 minutes and 54 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (253374061) and verify the expected output (8 years, 12 days, 13 hours, 41 minutes and 1 second) vs actual result (8 years, 12 days, 13 hours, 41 minutes and 1 second)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (242062374) and verify the expected output (7 years, 246 days, 15 hours, 32 minutes and 54 seconds) vs actual result (7 years, 246 days, 15 hours, 32 minutes and 54 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (101956166) and verify the expected output (3 years, 85 days, 1 hour, 9 minutes and 26 seconds) vs actual result (3 years, 85 days, 1 hour, 9 minutes and 26 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (33243586) and verify the expected output (1 year, 19 days, 18 hours, 19 minutes and 46 seconds) vs actual result (1 year, 19 days, 18 hours, 19 minutes and 46 seconds)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter seconds (9041160) and verify the expected output (104 days, 15 hours and 26 minutes) vs actual result (104 days, 15 hours and 26 minutes)","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FormatDurationTestCase::0","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"FORMATS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FORMATTING"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Human readable duration format"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.human_readable_duration_format.test_format_duration"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52742f58faf5485cae000b9a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"36190d8eb76d5fc1","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5}},{"uid":"52e4a6d580ce5f36","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0}},{"uid":"4e87d924fe50548","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"5ba85cabbe7e4e64","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4249127f6bff6f10","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5}},{"uid":"7cc0844ab5ecf216","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0}},{"uid":"47f8df09a84d8337","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["FORMATTING","STRINGS","DATES/TIME","FORMATS","ALGORITHMS"]},"source":"b92f0db6c4ee4ff0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b93db50e25bdce85.json b/allure-report/data/test-cases/b93db50e25bdce85.json deleted file mode 100644 index faf6d0347f9..00000000000 --- a/allure-report/data/test-cases/b93db50e25bdce85.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"b93db50e25bdce85","name":"Testing done_or_not function","fullName":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku.DidIFinishedSudokuTestCase#test_done_or_not","historyId":"7c59feaf54bd4089e056f041844e3fe6","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bbdde990c6eec147","name":"stdout","source":"bbdde990c6eec147.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PUZZLES"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LOOPS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"b93db50e25bdce85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/b95dabcc1b6701ba.json b/allure-report/data/test-cases/b95dabcc1b6701ba.json new file mode 100644 index 00000000000..89900d23d7a --- /dev/null +++ b/allure-report/data/test-cases/b95dabcc1b6701ba.json @@ -0,0 +1 @@ +{"uid":"b95dabcc1b6701ba","name":"Testing duplicate_encode function","fullName":"kyu_6.duplicate_encoder.test_duplicate_encode.DuplicateEncodeTestCase#test_duplicate_encode","historyId":"fa07af113ba280dc5a89690a520b3897","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"description":"\n Testing duplicate_encode function\n with various test inputs\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function that should take a shuffled list of unique numbers\n from 1 to n with one element missing (which can be any\n number including n). Should return this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4bd7ac0fc20fb6a1","name":"stdout","source":"4bd7ac0fc20fb6a1.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"name":"story","value":"Number Zoo Patrol"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"babd57c21b463d43.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/badb2c1a8c5e2d2d.json b/allure-report/data/test-cases/badb2c1a8c5e2d2d.json new file mode 100644 index 00000000000..f22caa7d6ba --- /dev/null +++ b/allure-report/data/test-cases/badb2c1a8c5e2d2d.json @@ -0,0 +1 @@ +{"uid":"badb2c1a8c5e2d2d","name":"test_random","fullName":"kyu_7.coloured_triangles.test_triangle.TriangleTestCase#test_random","historyId":"f9568f445cf6471d62f38f61a6e1887d","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"description":"\n Advanced/random test case\n :return:\n ","descriptionHtml":" Advanced/random test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Advanced/random test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"425763916f5e21f0","name":"stdout","source":"425763916f5e21f0.txt","type":"text/plain","size":791}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"Algorithms"},{"name":"tag","value":"Strings"},{"name":"tag","value":"Logic"},{"name":"story","value":"Coloured Triangles"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"664f2a2d41bf2bd8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"5ea1e8d078b774a7","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"6c1504a4fcfadf69","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"a83637127d81f7d9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"tags":["Algorithms","Logic","Strings"]},"source":"badb2c1a8c5e2d2d.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/bb5e32abc058341d.json b/allure-report/data/test-cases/bb5e32abc058341d.json
deleted file mode 100644
index c66151892c5..00000000000
--- a/allure-report/data/test-cases/bb5e32abc058341d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"bb5e32abc058341d","name":"Testing 'longest_repetition' function","fullName":"kyu_6.longest_repetition.test_longest_repetition.LongestRepetitionTestCase#test_longest_repetition","historyId":"6431e0366c9c302e03ac01343fb7ea77","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"description":"\n For a given string s find the character c (or C) with\n longest consecutive repetition and return: (c, l)\n where l (or L) is the length of the repetition.\n\n For empty string return: ('', 0)\n :return:\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"tag","value":"UTILS"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"feature","value":"Utils"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"158fcdb2f6fefbbc","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0}},{"uid":"2b0cda84a7f3dae6","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0}},{"uid":"4d2239036502cf20","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"ecd778da0cbd3ef","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9b0ec4eb2cd2dde7","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0}},{"uid":"dd76819b5fd836d3","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0}},{"uid":"69f65011f131e2b6","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"5e4b0e05a0862f7e","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"bb8e119491d2ebc3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bb902a37816cc407.json b/allure-report/data/test-cases/bb902a37816cc407.json new file mode 100644 index 00000000000..52bac42960f --- /dev/null +++ b/allure-report/data/test-cases/bb902a37816cc407.json @@ -0,0 +1 @@ +{"uid":"bb902a37816cc407","name":"You are given two angles -> find the 3rd.","fullName":"kyu_8.third_angle_of_triangle.test_third_angle_of_triangle.OtherAngleTestCase#test_other_angle","historyId":"6630066bed88b9c8246478bc4b94ac73","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"description":"\n You are given two angles (in degrees) of a triangle.\n Find the 3rd.\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2d914c949df5ab84","name":"stdout","source":"2d914c949df5ab84.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"bbfb47c5ac3f243c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bc04b77b7c90af86.json b/allure-report/data/test-cases/bc04b77b7c90af86.json new file mode 100644 index 00000000000..c10f09aeab8 --- /dev/null +++ b/allure-report/data/test-cases/bc04b77b7c90af86.json @@ -0,0 +1 @@ +{"uid":"bc04b77b7c90af86","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"bc0d03d768c84e9a.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/bc3230f80ad8864d.json b/allure-report/data/test-cases/bc3230f80ad8864d.json
deleted file mode 100644
index 25fc256f562..00000000000
--- a/allure-report/data/test-cases/bc3230f80ad8864d.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"bc3230f80ad8864d","name":"Testing Warrior class >>> bruce_lee","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_bruce_lee","historyId":"7af7e9479cf2a47a636ae35231bacc9f","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> bruce_lee\n ","descriptionHtml":"Advanced Warrior class assertions
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert training","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert battle","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert achievements","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c1b206842b9d15e3","name":"stdout","source":"c1b206842b9d15e3.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":12,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b8d68faa427e9f9d","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"bc3230f80ad8864d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bc5f75e76b0bf63.json b/allure-report/data/test-cases/bc5f75e76b0bf63.json new file mode 100644 index 00000000000..d8e131df5f8 --- /dev/null +++ b/allure-report/data/test-cases/bc5f75e76b0bf63.json @@ -0,0 +1 @@ +{"uid":"bc5f75e76b0bf63","name":"Testing max_multiple function","fullName":"kyu_7.maximum_multiple.test_maximum_multiple.MaximumMultipleTestCase#test_maximum_multiple","historyId":"3181c0c2e1c9ba7b49a9f72369c7b0bb","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"description":"\n Testing max_multiple function with\n various test data\n\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests").\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Find the smallest"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"bd6b8dc125a7712d.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/bd89dc29359aa359.json b/allure-report/data/test-cases/bd89dc29359aa359.json
deleted file mode 100644
index 9771dc85df9..00000000000
--- a/allure-report/data/test-cases/bd89dc29359aa359.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"bd89dc29359aa359","name":"Testing Encoding functionality","fullName":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding.EncodingTestCase#test_encoding","historyId":"195b2d3cd638502ec301b9e9eaa3f969","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"2b46e4c3602d8a1","name":"stdout","source":"2b46e4c3602d8a1.txt","type":"text/plain","size":878}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"SECURITY"},{"name":"tag","value":"CIPHERS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"bd89dc29359aa359.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bdc34fe177dff4e3.json b/allure-report/data/test-cases/bdc34fe177dff4e3.json deleted file mode 100644 index 545595b15bf..00000000000 --- a/allure-report/data/test-cases/bdc34fe177dff4e3.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"bdc34fe177dff4e3","name":"Testing flatten function","fullName":"kyu_5.flatten.test_flatten.FlattenTestCase#test_flatten","historyId":"bf9ab588ec37b96b09a8d0c56f74fc4a","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"description":"\n For this exercise you will create a global flatten method.\n The method takes in any number of arguments and flattens\n them into a single array. If any of the arguments passed in\n are an array then the individual objects within the array\n will be flattened so that they exist at the same level as\n the other arguments. Any nested arrays, no matter how deep,\n should be flattened into the single array result.\n\n The following are examples of how this function would be\n used and what the expected results would be:\n\n flatten(1, [2, 3], 4, 5, [6, [7]]) # returns [1, 2, 3, 4, 5, 6, 7]\n flatten('a', ['b', 2], 3, None, [[4], ['c']]) # returns ['a', 'b', 2, 3, None, 4, 'c']\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d015bd8e99b083ac","name":"stdout","source":"d015bd8e99b083ac.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Pairs"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"f3421cdd7cb94a40","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0}}],"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"be5a8376fdcba717.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/be79a08ed18e426.json b/allure-report/data/test-cases/be79a08ed18e426.json new file mode 100644 index 00000000000..87eee36b1d6 --- /dev/null +++ b/allure-report/data/test-cases/be79a08ed18e426.json @@ -0,0 +1 @@ +{"uid":"be79a08ed18e426","name":"Testing create_city_map function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_create_city_map","historyId":"e437e22193ec7315819824ea1255ab3f","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3a88934bc640802f","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0}},{"uid":"9d8106b104f30ee6","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1}},{"uid":"981acdaf3faf1d8f","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"ea50e73cff32206e","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"37c27a38809b08b4","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0}},{"uid":"2b76b55d8c8f82d1","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1}},{"uid":"614b9e2de4457676","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"e798d2f5cc38e024","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"tags":["ALGORITHMS"]},"source":"be79a08ed18e426.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/beae761fcafbcfaf.json b/allure-report/data/test-cases/beae761fcafbcfaf.json new file mode 100644 index 00000000000..33265d724d0 --- /dev/null +++ b/allure-report/data/test-cases/beae761fcafbcfaf.json @@ -0,0 +1 @@ +{"uid":"beae761fcafbcfaf","name":"Non consecutive number should be returned","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_positive","historyId":"13df60cbdff5ee076adcd6328cc69159","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"description":"\n If we have an array [1,2,3,4,6,7,8] then 1 then 2\n then 3 then 4 are all consecutive but 6 is not,\n so that's the first non-consecutive number.\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"8ec04fa99fe20225","name":"stdout","source":"8ec04fa99fe20225.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing is_prime util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"bf1274fce77ea3c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bf262768264e0cc2.json b/allure-report/data/test-cases/bf262768264e0cc2.json new file mode 100644 index 00000000000..11655336904 --- /dev/null +++ b/allure-report/data/test-cases/bf262768264e0cc2.json @@ -0,0 +1 @@ +{"uid":"bf262768264e0cc2","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_true","historyId":"c8ef830d4279bee02e53bf3a04349c35","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return true if it is a factor.\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"69ca1dfc95141b1","name":"stdout","source":"69ca1dfc95141b1.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Sum of odd numbers"},{"name":"feature","value":"Math"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"bfe3079800be8e80.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/bff3d119847a95d6.json b/allure-report/data/test-cases/bff3d119847a95d6.json new file mode 100644 index 00000000000..426257a4921 --- /dev/null +++ b/allure-report/data/test-cases/bff3d119847a95d6.json @@ -0,0 +1 @@ +{"uid":"bff3d119847a95d6","name":"Find the int that appears an odd number of times","fullName":"kyu_6.find_the_odd_int.test_find_the_odd_int.FindTheOddIntTestCase#test_something","historyId":"0f9fe14df4043e3026ded68af344e3f2","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"description":"\n Sample testing.\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing epidemic function\n :return:\n ","descriptionHtml":"The function epidemic should return the maximum number of infected as an integer (truncate to integer the result of max(I)).
","status":"passed","steps":[{"name":"Enter test data (tm: 18, n: 432, s0: 1004, i0: 1, b: 0.00209, a: 0.51, expected: 420) and verify the expected output (420) vs actual result (420)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 12, n: 288, s0: 1007, i0: 2, b: 0.00206, a: 0.45, expected: 461) and verify the expected output (461) vs actual result (461)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 999, i0: 1, b: 0.00221, a: 0.55, expected: 409) and verify the expected output (409) vs actual result (409)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 1005, i0: 1, b: 0.00216, a: 0.45, expected: 474) and verify the expected output (474) vs actual result (474)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 24, n: 576, s0: 982, i0: 1, b: 0.00214, a: 0.44, expected: 460) and verify the expected output (460) vs actual result (460)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 20, n: 480, s0: 1000, i0: 1, b: 0.00199, a: 0.53, expected: 386) and verify the expected output (386) vs actual result (386)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 980, i0: 1, b: 0.00198, a: 0.44, expected: 433) and verify the expected output (433) vs actual result (433)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 14, n: 336, s0: 996, i0: 2, b: 0.00206, a: 0.41, expected: 483) and verify the expected output (483) vs actual result (483)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 13, n: 312, s0: 993, i0: 2, b: 0.0021, a: 0.51, expected: 414) and verify the expected output (414) vs actual result (414)","time":{"start":1732428194686,"stop":1732428194686,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (tm: 28, n: 672, s0: 999, i0: 1, b: 0.00197, a: 0.55, expected: 368) and verify the expected output (368) vs actual result (368)","time":{"start":1732428194689,"stop":1732428194689,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EpidemicTestCase::0","time":{"start":1732428194691,"stop":1732428194691,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Disease Spread"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.disease_spread.test_epidemic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/566543703c72200f0b0000c9","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c1010dc09e66b779.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c11bd2bbb0f17cd9.json b/allure-report/data/test-cases/c11bd2bbb0f17cd9.json deleted file mode 100644 index 683fbccff0b..00000000000 --- a/allure-report/data/test-cases/c11bd2bbb0f17cd9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c11bd2bbb0f17cd9","name":"Testing count_letters_and_digits function","fullName":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits.CalculateTestCase#test_calculate","historyId":"a9a9cea93ff72e09882edc4b831ce933","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"b953c5b7701746a6","name":"stdout","source":"b953c5b7701746a6.txt","type":"text/plain","size":242}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7954a467ea4b79e1","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"c11bd2bbb0f17cd9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c12d427c645c762f.json b/allure-report/data/test-cases/c12d427c645c762f.json new file mode 100644 index 00000000000..859416d4ce5 --- /dev/null +++ b/allure-report/data/test-cases/c12d427c645c762f.json @@ -0,0 +1 @@ +{"uid":"c12d427c645c762f","name":"Testing largestPower function","fullName":"kyu_7.powers_of_3.test_largest_power.LargestPowerTestCase#test_largest_power","historyId":"026739760bca73e921f8e5d35d9329cf","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"description":"\n Testing largestPower function\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Casino chips"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1bbca055747eb3d5","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0}},{"uid":"c371f8df57328f01","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0}},{"uid":"20bc61b759bd6ae3","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"6cc7dd91ca56d191","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4d4729a99109106e","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0}},{"uid":"d19efceb39f40f4f","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0}},{"uid":"41efd0d786aed73","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"d1585e7c78fd8d06","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c1393951861e51a9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c149947a189c0282.json b/allure-report/data/test-cases/c149947a189c0282.json new file mode 100644 index 00000000000..261acf034d0 --- /dev/null +++ b/allure-report/data/test-cases/c149947a189c0282.json @@ -0,0 +1 @@ +{"uid":"c149947a189c0282","name":"Should return 'Fail!'s","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_fail","historyId":"a12b9599b8bf7b92d2c2e1462a17342d","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"description":"\n If there are no good ideas,\n as is often the case, return 'Fail!'.\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472796,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724733472796,"stop":1724733472843,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724733472843,"stop":1724733472890,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data and verify the output...","time":{"start":1724733472890,"stop":1724733472921,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1a418dd5b9f09793","name":"stdout","source":"1a418dd5b9f09793.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OPTIMIZATION"},{"name":"feature","value":"Optimization"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Integers: Recreation One"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"c16d54e01aa089ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1dfde6c70281ff2.json b/allure-report/data/test-cases/c1dfde6c70281ff2.json new file mode 100644 index 00000000000..92b47ea70cc --- /dev/null +++ b/allure-report/data/test-cases/c1dfde6c70281ff2.json @@ -0,0 +1 @@ +{"uid":"c1dfde6c70281ff2","name":"All chars are in upper case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_caps","historyId":"f47162ca0e9bacec154c9094fd33e635","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert level","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert experience","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert rank","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cbe62037cd68092f","name":"stdout","source":"cbe62037cd68092f.txt","type":"text/plain","size":67}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"RULES"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"4 kyu"},{"name":"story","value":"The Greatest Warrior"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"47c7c905d0e48c01","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"c1f2317d20109e13.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c1f90fc4edd70bea.json b/allure-report/data/test-cases/c1f90fc4edd70bea.json new file mode 100644 index 00000000000..09789ad981a --- /dev/null +++ b/allure-report/data/test-cases/c1f90fc4edd70bea.json @@ -0,0 +1 @@ +{"uid":"c1f90fc4edd70bea","name":"Testing next_smaller function","fullName":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller.NextSmallerTestCase#test_next_smaller","historyId":"9d8cb8adf1764c55348d349698b938ac","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"tag","value":"INTEGERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"5052ffebbe9e5222","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0}},{"uid":"2dbb23fbcd106704","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1}},{"uid":"17e1393f574a0bd2","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"a8ac1a16737b16a","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"641b1ee7248b1557","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0}},{"uid":"5eca272b3b393557","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1}},{"uid":"b01fd4e8d095b60f","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"c1f90fc4edd70bea.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c245bb8192a35073.json b/allure-report/data/test-cases/c245bb8192a35073.json new file mode 100644 index 00000000000..d7582818e74 --- /dev/null +++ b/allure-report/data/test-cases/c245bb8192a35073.json @@ -0,0 +1 @@ +{"uid":"c245bb8192a35073","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"tag","value":"UTILS"},{"name":"suite","value":"No kyu helper methods"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Testing gen_primes util"},{"name":"tag","value":"PRIMES"},{"name":"feature","value":"Utils"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"caf9670d0e0965a0","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1}},{"uid":"387fcb0eb682916d","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0}},{"uid":"213fb9c2969dbcfd","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"e1aa1981a2c5874d","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"65e9477143af3f55","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1}},{"uid":"4c77d97bc41048ff","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0}},{"uid":"35cf25b9e515e00d","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"928532982127bba0","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}}]},"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"c245bb8192a35073.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c24c0d6b556365c6.json b/allure-report/data/test-cases/c24c0d6b556365c6.json new file mode 100644 index 00000000000..8121477b9ca --- /dev/null +++ b/allure-report/data/test-cases/c24c0d6b556365c6.json @@ -0,0 +1 @@ +{"uid":"c24c0d6b556365c6","name":"Testing 'sum_triangular_numbers' with negative numbers","fullName":"kyu_7.sum_of_triangular_numbers.test_sum_triangular_numbers.SumTriangularNumbersTestCase#test_sum_triangular_numbers_negative_numbers","historyId":"4e553d5e3ff5fc5c21a746a843af96e5","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"description":"\n Testing 'sum_triangular_numbers' function\n with negative numbers\n :return:\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7b9e000b6e8b6a60","name":"stdout","source":"7b9e000b6e8b6a60.txt","type":"text/plain","size":3898}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Battleship field validator"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"GAME BOARDS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"c2cb5c7eee700e38.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c2e82f2f4bdc38ce.json b/allure-report/data/test-cases/c2e82f2f4bdc38ce.json deleted file mode 100644 index 2bc77f94a00..00000000000 --- a/allure-report/data/test-cases/c2e82f2f4bdc38ce.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c2e82f2f4bdc38ce","name":"Testing 'thirt' function","fullName":"kyu_6.a_rule_of_divisibility_by_13.test_thirt.ThirtTestCase#test_thirt","historyId":"b223f14337b9b49b6e64d94d9479e857","time":{"start":1724733473046,"stop":1724733473061,"duration":15},"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test a function that processes sequence of operations on an integer n (>=0). 'thirt' should return the stationary number.
","status":"passed","steps":[{"name":"Enter a n (1234567) and verify the expected output (87) vs actual result (87)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (321) and verify the expected output (48) vs actual result (48)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (8529) and verify the expected output (79) vs actual result (79)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (85299258) and verify the expected output (31) vs actual result (31)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (5634) and verify the expected output (57) vs actual result (57)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (1111111111) and verify the expected output (71) vs actual result (71)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a n (987654321) and verify the expected output (30) vs actual result (30)","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ee54cc9a323ef73f","name":"stdout","source":"ee54cc9a323ef73f.txt","type":"text/plain","size":318}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ThirtTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"A Rule of Divisibility by 13"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.a_rule_of_divisibility_by_13.test_thirt"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/564057bc348c7200bd0000ff/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c2e82f2f4bdc38ce.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c301f45b01d7d10f.json b/allure-report/data/test-cases/c301f45b01d7d10f.json deleted file mode 100644 index 04e9a29bfed..00000000000 --- a/allure-report/data/test-cases/c301f45b01d7d10f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c301f45b01d7d10f","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d97724b3c30f749b","name":"stdout","source":"d97724b3c30f749b.txt","type":"text/plain","size":230}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Greek Sort"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Tuple"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e075566662ada8b","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"c301f45b01d7d10f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c322e80c6cd8da83.json b/allure-report/data/test-cases/c322e80c6cd8da83.json deleted file mode 100644 index 4a8f3c2ecc4..00000000000 --- a/allure-report/data/test-cases/c322e80c6cd8da83.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c322e80c6cd8da83","name":"test_solution_empty","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_empty","historyId":"29249ea89f0081dda70899f3290f857b","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 86, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Diophantine Equation"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cc10d0b4585e5c2e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c322e80c6cd8da83.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c32d359a7c2bd36e.json b/allure-report/data/test-cases/c32d359a7c2bd36e.json deleted file mode 100644 index e03fff3808d..00000000000 --- a/allure-report/data/test-cases/c32d359a7c2bd36e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c32d359a7c2bd36e","name":"Testing hoop_count function (negative test case)","fullName":"kyu_8.keep_up_the_hoop.test_hoop_count.HoopCountTestCase#test_hoop_count_negative","historyId":"89ee625343ed07ab852f830d9cc358b3","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"descriptionHtml":"Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"eea6ab4a75a4141f","name":"stdout","source":"eea6ab4a75a4141f.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c3671be37bb5a0b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c371f8df57328f01.json b/allure-report/data/test-cases/c371f8df57328f01.json new file mode 100644 index 00000000000..c52f753679a --- /dev/null +++ b/allure-report/data/test-cases/c371f8df57328f01.json @@ -0,0 +1 @@ +{"uid":"c371f8df57328f01","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1732428194586,"stop":1732428194586,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solve' function with various test data\n :return:\n ","descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1732428194588,"stop":1732428194588,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Casino chips"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c371f8df57328f01.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3dd54ea07cba973.json b/allure-report/data/test-cases/c3dd54ea07cba973.json new file mode 100644 index 00000000000..1cb198b897c --- /dev/null +++ b/allure-report/data/test-cases/c3dd54ea07cba973.json @@ -0,0 +1 @@ +{"uid":"c3dd54ea07cba973","name":"Testing shark function (negative)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_bait","historyId":"83b78a44a84315eae8c56a708925a03e","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732764221042,"stop":1732764221042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c3dd54ea07cba973.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3f4680f378d24e0.json b/allure-report/data/test-cases/c3f4680f378d24e0.json new file mode 100644 index 00000000000..144bc3a6ee5 --- /dev/null +++ b/allure-report/data/test-cases/c3f4680f378d24e0.json @@ -0,0 +1 @@ +{"uid":"c3f4680f378d24e0","name":"Testing take function","fullName":"kyu_8.enumerable_magic_25.test_take.TakeTestCase#test_take","historyId":"d35757cf261e283f5eab532965102602","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1732428196158,"stop":1732428196158,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"suite","value":"Data Structures"},{"name":"epic","value":"8 kyu"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"feature","value":"Lists"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c3f4680f378d24e0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c3fd98c434ab7b3d.json b/allure-report/data/test-cases/c3fd98c434ab7b3d.json new file mode 100644 index 00000000000..77e0e95201f --- /dev/null +++ b/allure-report/data/test-cases/c3fd98c434ab7b3d.json @@ -0,0 +1 @@ +{"uid":"c3fd98c434ab7b3d","name":"Find the int that appears an odd number of times","fullName":"kyu_6.find_the_odd_int.test_find_the_odd_int.FindTheOddIntTestCase#test_something","historyId":"0f9fe14df4043e3026ded68af344e3f2","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"description":"\n Sample testing.\n Expected result is 5\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests") with\n\n 1) the smallest number you got\n 2) the index i of the digit d you took, i as small as possible\n 3) the index j (as small as possible) where you insert this digit d to have the smallest number.\n\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the smallest"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c4045fa90cc64964.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/c409a300546c15a6.json b/allure-report/data/test-cases/c409a300546c15a6.json
new file mode 100644
index 00000000000..46f67f6dcd3
--- /dev/null
+++ b/allure-report/data/test-cases/c409a300546c15a6.json
@@ -0,0 +1 @@
+{"uid":"c409a300546c15a6","name":"Testing to_table function","fullName":"kyu_6.array_to_html_table.test_list_to_html_table.ArrayToTableTestCase#test_array_to_table_function","historyId":"d7b951f3d87d7ec30599f08ae5567eb7","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f8ebdb80be997fde","name":"stdout","source":"f8ebdb80be997fde.txt","type":"text/plain","size":2146}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Array to HTML table"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"c409a300546c15a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c462a5b80d49c98b.json b/allure-report/data/test-cases/c462a5b80d49c98b.json deleted file mode 100644 index c125f99b4e6..00000000000 --- a/allure-report/data/test-cases/c462a5b80d49c98b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"c462a5b80d49c98b","name":"Testing 'count_sheeps' function: mixed list","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep_mixed_list","historyId":"1b4dd61e36f8ec4ee2f83635d4e16e21","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"description":"\n Testing 'count_sheeps' function\n Hint: Don't forget to check for\n bad values like mixed list\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'solution' function\n\n The solution should strips all text that follows any\n of a set of comment markers passed in. Any whitespace at\n the end of the line should also be stripped out.\n ","descriptionHtml":"Testing permutations function
The solution should strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.
","status":"passed","steps":[{"name":"Enter a test string (apples, pears # and bananas\ngrapes\nbananas !apples) and verify the output (apples, pears\ngrapes\nbananas) vs expected (apples, pears\ngrapes\nbananas)","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (a #b\nc\nd $e f g) and verify the output (a\nc\nd) vs expected (a\nc\nd)","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3594eabb545be088","name":"stdout","source":"3594eabb545be088.txt","type":"text/plain","size":225}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"story","value":"Strip Comments"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strip_comments.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51c8e37cee245da6b40000bd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS"]},"source":"c4eaee07c56e2bda.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c50564bf93e2ebd9.json b/allure-report/data/test-cases/c50564bf93e2ebd9.json new file mode 100644 index 00000000000..85d5116b903 --- /dev/null +++ b/allure-report/data/test-cases/c50564bf93e2ebd9.json @@ -0,0 +1 @@ +{"uid":"c50564bf93e2ebd9","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"description":"\n Testing 'solution' function.\n\n The should return a formatted string.\n The return value should equal \"Value is VALUE\"\n where value is a 5 digit padded number.\n :return:\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied\n by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Battleship field validator"},{"name":"feature","value":"Lists"},{"name":"epic","value":"3 kyu"},{"name":"tag","value":"VALIDATION"},{"name":"tag","value":"GAME BOARDS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Competent"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d12e38fc8c8ec4dd","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0}},{"uid":"9c7635c760d519cd","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0}},{"uid":"9e692004742b5469","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"c2cb5c7eee700e38","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1a13c6a89153460b","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0}},{"uid":"bd11ee5929c6c53a","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0}},{"uid":"5dad026541a05e65","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"36b9e5073b489f49","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}}]},"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"c515ef635fa26df1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c51d0888e1777a9e.json b/allure-report/data/test-cases/c51d0888e1777a9e.json new file mode 100644 index 00000000000..113768a228b --- /dev/null +++ b/allure-report/data/test-cases/c51d0888e1777a9e.json @@ -0,0 +1 @@ +{"uid":"c51d0888e1777a9e","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":" Testing using empty test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 108, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Diophantine Equation"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2200ea2b7046c13e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218847,"stop":1732764218847,"duration":0}},{"uid":"4397ca89d4873d0b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194194,"stop":1732428194194,"duration":0}},{"uid":"eb28edf9a9f50007","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"61b2bb726cd1f52e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"80f314b70b306bd4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218847,"stop":1732764218847,"duration":0}},{"uid":"b5a113fbe50e74ce","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194194,"stop":1732428194194,"duration":0}},{"uid":"39245131d70863d6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"c322e80c6cd8da83","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c62025a79b33eb3.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/c63189b867db5809.json b/allure-report/data/test-cases/c63189b867db5809.json
deleted file mode 100644
index 951f6b633a1..00000000000
--- a/allure-report/data/test-cases/c63189b867db5809.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"c63189b867db5809","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"description":"\n Testing growing_plant function\n\n Task\n\n Each day a plant is growing by upSpeed meters.\n Each night that plant's height decreases by downSpeed\n meters due to the lack of sun heat. Initially, plant\n is 0 meters tall. We plant the seed at the beginning\n of a day. We want to know when the height of the plant\n will reach a certain level.\n\n Example\n\n For upSpeed = 100, downSpeed = 10 and desiredHeight = 910,\n the output should be 10.\n\n For upSpeed = 10, downSpeed = 9 and desiredHeight = 4,\n the output should be 1. Because the plant reach to the desired\n height at day 1(10 meters).\n\n Input/Output\n\n [input] integer upSpeed\n A positive integer representing the daily growth.\n Constraints: 5 ⤠upSpeed ⤠100.\n\n [input] integer downSpeed\n A positive integer representing the nightly decline.\n Constraints: 2 ⤠downSpeed < upSpeed.\n\n [input] integer desiredHeight\n A positive integer representing the threshold.\n Constraints: 4 ⤠desiredHeight ⤠1000.\n\n [output] an integer\n\n The number of days that it will take for the plant to\n reach/pass desiredHeight (including the last day in the\n total count).\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1732428194618,"stop":1732428194618,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1732428194621,"stop":1732428194621,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Factorial"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Color Choice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"c66ea864985e641.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c678c03e12583e98.json b/allure-report/data/test-cases/c678c03e12583e98.json new file mode 100644 index 00000000000..40c1996df3d --- /dev/null +++ b/allure-report/data/test-cases/c678c03e12583e98.json @@ -0,0 +1 @@ +{"uid":"c678c03e12583e98","name":"Testing Battle method","fullName":"kyu_4.the_greatest_warrior.test_battle.BattleTestCase#test_battle","historyId":"8e87d116e1cdd640cae9c4bfd3a15981","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battle method\n ","descriptionHtml":"Testing Battle method
","status":"passed","steps":[{"name":"If a warrior level 1 fights an enemy level 1, they will receive 10 experience points.","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"If a warrior level 1 fights an enemy level 3, they will receive 80 experience points.","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleTestCase::0","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"The Greatest Warrior"},{"name":"suite","value":"OOP"},{"name":"tag","value":"RULES"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_battle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"74d08353b69572cc","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0}},{"uid":"9d0a0378192b3dfd","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0}},{"uid":"946874b940758475","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"b35458785abd4d83","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c00621abb22a9be3","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0}},{"uid":"ac136a3215f7ad6c","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0}},{"uid":"d558fd9b3bcee4ae","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"6ce4bba2ff4664c2","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"c678c03e12583e98.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6b40d117da688e8.json b/allure-report/data/test-cases/c6b40d117da688e8.json new file mode 100644 index 00000000000..6f77d21ef8b --- /dev/null +++ b/allure-report/data/test-cases/c6b40d117da688e8.json @@ -0,0 +1 @@ +{"uid":"c6b40d117da688e8","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 24, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Diophantine Equation"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"c6b40d117da688e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c6c0fd894bae942b.json b/allure-report/data/test-cases/c6c0fd894bae942b.json new file mode 100644 index 00000000000..9c6a71d5e55 --- /dev/null +++ b/allure-report/data/test-cases/c6c0fd894bae942b.json @@ -0,0 +1 @@ +{"uid":"c6c0fd894bae942b","name":"Testing first_non_repeating_letter function","fullName":"kyu_5.first_non_repeating_character.test_first_non_repeating_letter.FirstNonRepeatingLetterTestCase#test_first_non_repeating_letter","historyId":"cff7d7f7b55b35458669cd92cb129d06","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"description":"\n Testing a function named first_non_repeating_letter\n that takes a string input, and returns the first character\n that is not repeated anywhere in the string.\n\n For example, if given the input 'stress', the function\n should return 't', since the letter t only occurs once\n in the string, and occurs first in the string.\n\n As an added challenge, upper- and lowercase letters are\n considered the same character, but the function should\n return the correct case for the initial letter. For example,\n the input 'sTreSS' should return 'T'.\n\n If a string contains all repeating characters, it should\n return an empty string (\"\") or None -- see sample tests.\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e5822ae7754d2e8","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"c7106989a12e3c0a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c77ad5c459e90990.json b/allure-report/data/test-cases/c77ad5c459e90990.json new file mode 100644 index 00000000000..47a5e2a95d2 --- /dev/null +++ b/allure-report/data/test-cases/c77ad5c459e90990.json @@ -0,0 +1 @@ +{"uid":"c77ad5c459e90990","name":"Testing decipher_this function","fullName":"kyu_6.decipher_this.test_decipher_this.DecipherThisTestCase#test_decipher_this","historyId":"ae3e8fd54712dd8496499b7bc14e7226","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"description":"\n Testing decipher_this function\n :param self:\n :return:\n ","descriptionHtml":"Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given a secret message that you need to decipher.
For each word:
* the second and the last letter is switched (e.g. Hello becomes Holle)
* the first letter is replaced by its character code (e.g. H becomes 72)
Note: there are no special characters used, only letters and spaces.
Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127688,"stop":1724735127703,"duration":15},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127703,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127703,"stop":1724735127735,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127735,"stop":1724735127781,"duration":46},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1724735127781,"stop":1724735127813,"duration":32},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"dba3075441128a41","name":"stdout","source":"dba3075441128a41.txt","type":"text/plain","size":932}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1724735127813,"stop":1724735127813,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Integers: Recreation One"},{"name":"feature","value":"Optimization"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"c77cd6e80c5f42f2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c78ec33b6fe131a0.json b/allure-report/data/test-cases/c78ec33b6fe131a0.json new file mode 100644 index 00000000000..861073073ce --- /dev/null +++ b/allure-report/data/test-cases/c78ec33b6fe131a0.json @@ -0,0 +1 @@ +{"uid":"c78ec33b6fe131a0","name":"XOR logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_xor","historyId":"80fa996da1344642e95c3c1d2f315df1","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"description":"\n Exclusive or or exclusive disjunction is a\n logical operation that outputs true only when\n inputs differ (one is true, the other is false).\n\n XOR outputs true whenever the inputs differ:\n\n Source:\n https://en.wikipedia.org/wiki/Exclusive_or\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: remove\n :return:\n ","descriptionHtml":"Testing remove method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Remove items from the list","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219358,"stop":1732764219358,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"c8141b2abd713c90.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c8680b20dd7e19d5.json b/allure-report/data/test-cases/c8680b20dd7e19d5.json new file mode 100644 index 00000000000..eb791fd1d5d --- /dev/null +++ b/allure-report/data/test-cases/c8680b20dd7e19d5.json @@ -0,0 +1 @@ +{"uid":"c8680b20dd7e19d5","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_four","historyId":"861b34050c3ab0a994fa20a6090c5ab5","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"description":"\n 4 is a square number\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1732428193985,"stop":1732428193985,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"INTEGERS"},{"name":"parentSuite","value":"Competent"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"c9b5322357724fe7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c9c9a6a75f3a249f.json b/allure-report/data/test-cases/c9c9a6a75f3a249f.json new file mode 100644 index 00000000000..5e6cab34314 --- /dev/null +++ b/allure-report/data/test-cases/c9c9a6a75f3a249f.json @@ -0,0 +1 @@ +{"uid":"c9c9a6a75f3a249f","name":"Testing checkchoose function","fullName":"kyu_6.color_choice.test_checkchoose.CheckchooseTestCase#test_checkchoose","historyId":"2e5f294dd8fbb4489c95b8783fb8e9af","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Factorial"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Color Choice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"823872001ab9ba87","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0}},{"uid":"c66ea864985e641","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0}},{"uid":"d8c3cab37b2e7dbb","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"d208c625c151e61d","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"64abc8899e8e691d","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0}},{"uid":"34a84f898de954b5","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0}},{"uid":"de04793abb90de01","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"3d3e842542b066f3","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"c9c9a6a75f3a249f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/c9fb9d40396e984d.json b/allure-report/data/test-cases/c9fb9d40396e984d.json new file mode 100644 index 00000000000..9d994182e2b --- /dev/null +++ b/allure-report/data/test-cases/c9fb9d40396e984d.json @@ -0,0 +1 @@ +{"uid":"c9fb9d40396e984d","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Decoding functionality\n ","descriptionHtml":"Verify cipher function. This \"decode\" is used to decode a string.
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DecodingTestCase::0","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"CIPHERS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_decoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8d44f2b97a47f0f3","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0}},{"uid":"24fce2b7549fc46","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2}},{"uid":"8c1749fbe9590e77","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"63600542edbb694a","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"98ca489a74667507","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0}},{"uid":"8804093a9c3b17d","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2}},{"uid":"d9a6d590487a20fd","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"7e0e76f32ac7ce4e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"ca1eccae180a083e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/caa8571433eea386.json b/allure-report/data/test-cases/caa8571433eea386.json new file mode 100644 index 00000000000..ffb8716e617 --- /dev/null +++ b/allure-report/data/test-cases/caa8571433eea386.json @@ -0,0 +1 @@ +{"uid":"caa8571433eea386","name":"Testing 'greek_comparator' function","fullName":"kyu_8.greek_sort.test_greek_comparator.GreekComparatorTestCase#test_greek_comparator","historyId":"a1dee0241acea84cdb83fd9eaabd5c04","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase","time":{"start":1732764221017,"stop":1732764221017,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing greek_comparator function\n with various test inputs\n :return:\n ","descriptionHtml":"A custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument
","status":"passed","steps":[{"name":"Enter test inputs(alpha, beta) and assert expected (< 0) vs actual result (-1)","time":{"start":1732764221018,"stop":1732764221018,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(psi, psi) and assert expected (== 0) vs actual result (0)","time":{"start":1732764221018,"stop":1732764221018,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test inputs(upsilon, rho) and assert expected (> 0) vs actual result (3)","time":{"start":1732764221018,"stop":1732764221018,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GreekComparatorTestCase::0","time":{"start":1732764221020,"stop":1732764221020,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Greek Sort"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Tuple"},{"name":"epic","value":"8 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.greek_sort.test_greek_comparator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56bc1acf66a2abc891000561","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"caa8571433eea386.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cab8fd48239210db.json b/allure-report/data/test-cases/cab8fd48239210db.json new file mode 100644 index 00000000000..e7d3bd8c840 --- /dev/null +++ b/allure-report/data/test-cases/cab8fd48239210db.json @@ -0,0 +1 @@ +{"uid":"cab8fd48239210db","name":"String with no duplicate chars","fullName":"kyu_6.format_string_of_names.test_namelist.NamelistTestCase#test_namelist","historyId":"faebae956c3da12c5f429266c959c030","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1732428195504,"stop":1732428195504,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"cab8fd48239210db.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cab9c25314cf754.json b/allure-report/data/test-cases/cab9c25314cf754.json new file mode 100644 index 00000000000..eb0500c62b3 --- /dev/null +++ b/allure-report/data/test-cases/cab9c25314cf754.json @@ -0,0 +1 @@ +{"uid":"cab9c25314cf754","name":"Testing the 'group_cities' function","fullName":"kyu_6.rotate_the_letters_of_each_element.test_group_cities.GroupCitiesTestCase#test_group_cities","historyId":"0b146f7fbac52b042804286da8716f6b","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"description":"\n Test that a function that given a sequence of strings,\n groups the elements that can be obtained by rotating others,\n ignoring upper or lower cases.\n\n In the event that an element appears more than once in\n the input sequence, only one of them will be taken into\n account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase","time":{"start":1732428195606,"stop":1732428195606,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test that a function that given a sequence of strings,\n groups the elements that can be obtained by rotating others,\n ignoring upper or lower cases.\n\n In the event that an element appears more than once in\n the input sequence, only one of them will be taken into\n account for the result, discarding the rest.\n :return:\n ","descriptionHtml":"Test that a function that given a sequence of strings, groups the elements that can be obtained by rotating others, ignoring upper or lower cases. In the event that an element appears more than once in the input sequence, only one of them will be taken into account for the result, discarding the rest.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a list and verify the expected output vs actual result","time":{"start":1732428195607,"stop":1732428195607,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GroupCitiesTestCase::0","time":{"start":1732428195610,"stop":1732428195610,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"ROTATE THE LETTERS OF EACH ELEMENT"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"SORTING ALGORITHMS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"PUZZLES"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.rotate_the_letters_of_each_element.test_group_cities"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},"source":"cab9c25314cf754.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cac786da5d1fffa.json b/allure-report/data/test-cases/cac786da5d1fffa.json new file mode 100644 index 00000000000..3c96d92990a --- /dev/null +++ b/allure-report/data/test-cases/cac786da5d1fffa.json @@ -0,0 +1 @@ +{"uid":"cac786da5d1fffa","name":"Non is expected","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_none","historyId":"262134764fa6664c0e3055da165452d3","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"description":"\n If the whole array is consecutive then return\n null or Nothing or None.\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1732764221370,"stop":1732764221371,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1732764221377,"stop":1732764221377,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1732764221378,"stop":1732764221378,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"story","value":"Testing gen_primes util"},{"name":"suite","value":"No kyu helper methods"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"parentSuite","value":"Helper methods"},{"name":"tag","value":"PRIMES"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"caf9670d0e0965a0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb005e45e7b312b5.json b/allure-report/data/test-cases/cb005e45e7b312b5.json new file mode 100644 index 00000000000..63b853faa9c --- /dev/null +++ b/allure-report/data/test-cases/cb005e45e7b312b5.json @@ -0,0 +1 @@ +{"uid":"cb005e45e7b312b5","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bddb4d20a85ffa0","name":"stdout","source":"bddb4d20a85ffa0.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"cb14dd2e679669bc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb1c1fa1e4f21add.json b/allure-report/data/test-cases/cb1c1fa1e4f21add.json new file mode 100644 index 00000000000..d1accb2c745 --- /dev/null +++ b/allure-report/data/test-cases/cb1c1fa1e4f21add.json @@ -0,0 +1 @@ +{"uid":"cb1c1fa1e4f21add","name":"Testing growing_plant function","fullName":"kyu_7.growing_plant.test_growing_plant.GrowingPlantTestCase#test_growing_plant","historyId":"ed63cab09a5a21abc4139e6751f28e54","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"description":"\n Testing growing_plant function\n\n Task\n\n Each day a plant is growing by upSpeed meters.\n Each night that plant's height decreases by downSpeed\n meters due to the lack of sun heat. Initially, plant\n is 0 meters tall. We plant the seed at the beginning\n of a day. We want to know when the height of the plant\n will reach a certain level.\n\n Example\n\n For upSpeed = 100, downSpeed = 10 and desiredHeight = 910,\n the output should be 10.\n\n For upSpeed = 10, downSpeed = 9 and desiredHeight = 4,\n the output should be 1. Because the plant reach to the desired\n height at day 1(10 meters).\n\n Input/Output\n\n [input] integer upSpeed\n A positive integer representing the daily growth.\n Constraints: 5 ⤠upSpeed ⤠100.\n\n [input] integer downSpeed\n A positive integer representing the nightly decline.\n Constraints: 2 ⤠downSpeed < upSpeed.\n\n [input] integer desiredHeight\n A positive integer representing the threshold.\n Constraints: 4 ⤠desiredHeight ⤠1000.\n\n [output] an integer\n\n The number of days that it will take for the plant to\n reach/pass desiredHeight (including the last day in the\n total count).\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function validSolution/ValidateSolution/valid_solution()\n that accepts a 2D array representing a Sudoku board, and returns\n true if it is a valid solution, or false otherwise. The cells of\n the sudoku board may also contain 0's, which will represent empty\n cells. Boards containing one or more zeroes are considered to be\n invalid solutions.\n\n The board is always 9 cells by 9 cells, and every\n cell only contains integers from 0 to 9.\n :return:\n ","descriptionHtml":"Test a function validSolution/ValidateSolution/valid_solution() that accepts a 2D array representing a Sudoku board, and returns true if it is a valid solution, or false otherwise. The cells of the sudoku board may also contain 0's, which will represent empty cells. Boards containing one or more zeroes are considered to be invalid solutions.
The board is always 9 cells by 9 cells, and every cell only contains integers from 0 to 9.
","status":"passed","steps":[{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]) and verify the output (True) vs expected (True)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 0, 3, 4, 9], [1, 0, 0, 3, 4, 2, 5, 6, 0], [8, 5, 9, 7, 6, 1, 0, 2, 0], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 0, 1, 5, 3, 7, 2, 1, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 0, 0, 4, 8, 1, 1, 7, 9]]) and verify the output (False) vs expected (False)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([[1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 4, 5, 6, 7, 8, 9, 1], [3, 4, 5, 6, 7, 8, 9, 1, 2], [4, 5, 6, 7, 8, 9, 1, 2, 3], [5, 6, 7, 8, 9, 1, 2, 3, 4], [6, 7, 8, 9, 1, 2, 3, 4, 5], [7, 8, 9, 1, 2, 3, 4, 5, 6], [8, 9, 1, 2, 3, 4, 5, 6, 7], [9, 1, 2, 3, 4, 5, 6, 7, 8]]) and verify the output (False) vs expected (False)","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3a7734f8c672bad4","name":"stdout","source":"3a7734f8c672bad4.txt","type":"text/plain","size":949}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidSolutionTestCase::0","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Sudoku Solution Validator"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"VALIDATION"},{"name":"feature","value":"Validation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sudoku_solution_validator.test_valid_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/529bf0e9bdf7657179000008/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},"source":"cb1f986a714e3e2e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb74d5229c88c838.json b/allure-report/data/test-cases/cb74d5229c88c838.json new file mode 100644 index 00000000000..8d9007579ea --- /dev/null +++ b/allure-report/data/test-cases/cb74d5229c88c838.json @@ -0,0 +1 @@ +{"uid":"cb74d5229c88c838","name":"Testing agents_cleanup function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_agents_cleanup","historyId":"9af049da90f73c206ca7e8b1362e502f","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named agents_cleanup where:\n - agents: is an array of agent coordinates\n - n: defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should remove all agents that are outside of the city boundaries.\n :return:\n ","descriptionHtml":"The function should remove all agents that are outside of the city boundaries.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"e41185e6a2547eda","name":"stdout","source":"e41185e6a2547eda.txt","type":"text/plain","size":562}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"cb74d5229c88c838.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cb921d8c86204096.json b/allure-report/data/test-cases/cb921d8c86204096.json new file mode 100644 index 00000000000..17a5731d993 --- /dev/null +++ b/allure-report/data/test-cases/cb921d8c86204096.json @@ -0,0 +1 @@ +{"uid":"cb921d8c86204096","name":"Negative non consecutive number should be returned","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_negative","historyId":"f9c1f10fe995fd827dbc67efd6c689cb","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"description":"\n non-consecutive is a negative number.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1732764218818,"stop":1732764218819,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1732764218822,"stop":1732764218822,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"DECLARATIVE"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"PROGRAMMING"},{"name":"tag","value":"LANGUAGE"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"FEATURES"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ADVANCED"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},"source":"cbad1c121fb6a6fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cbb9443875889585.json b/allure-report/data/test-cases/cbb9443875889585.json new file mode 100644 index 00000000000..aa085e7e2e5 --- /dev/null +++ b/allure-report/data/test-cases/cbb9443875889585.json @@ -0,0 +1 @@ +{"uid":"cbb9443875889585","name":"Testing check_root function","fullName":"kyu_7.always_perfect.test_check_root.CheckRootTestCase#test_check_root","historyId":"9c2d30046a2fe35ee19c9d3833ea20a5","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"description":"\n Testing check_root function with various test inputs\n\n A function which takes numbers separated by commas\n in string format and returns the number which is a\n perfect square and the square root of that number.\n\n If string contains other characters than number or\n it has more or less than 4 numbers separated by comma\n function returns \"incorrect input\".\n\n If string contains 4 numbers but not consecutive it\n returns \"not consecutive\".\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"cbf123a6aa236a3b.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cc051f6a400be208.json b/allure-report/data/test-cases/cc051f6a400be208.json new file mode 100644 index 00000000000..95c9832b5ae --- /dev/null +++ b/allure-report/data/test-cases/cc051f6a400be208.json @@ -0,0 +1 @@ +{"uid":"cc051f6a400be208","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 38, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Josephus Survivor"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"cc2dceff6dc83502.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/ccac52878bec48b6.json b/allure-report/data/test-cases/ccac52878bec48b6.json
new file mode 100644
index 00000000000..620b73c3c0e
--- /dev/null
+++ b/allure-report/data/test-cases/ccac52878bec48b6.json
@@ -0,0 +1 @@
+{"uid":"ccac52878bec48b6","name":"Testing 'DefaultList' class: __getitem__","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_basic","historyId":"7dba0545991d74ec4981bfb3eea48559","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: __getitem__\n\n Called to implement evaluation of self[key]. For sequence\n types, the accepted keys should be integers and slice objects.\n Note that the special interpretation of negative indexes\n (if the class wishes to emulate a sequence type) is up to the\n __getitem__() method.\n :return:\n ","descriptionHtml":"Testing __getitem__ method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732428194680,"stop":1732428194680,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"ccac52878bec48b6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ccc1ac75f035d282.json b/allure-report/data/test-cases/ccc1ac75f035d282.json new file mode 100644 index 00000000000..2b5642fdacc --- /dev/null +++ b/allure-report/data/test-cases/ccc1ac75f035d282.json @@ -0,0 +1 @@ +{"uid":"ccc1ac75f035d282","name":"Wolf at the beginning of the queue","fullName":"kyu_8.wolf_in_sheep_clothing.test_wolf_in_sheep_clothing.WarnTheSheepTestCase#test_warn_the_sheep_wolf_at_start","historyId":"dcabd02011959f0337d9098678ad990d","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"description":"\n If the wolf is the closest animal to you,\n return \"Pls go away and stop eating my sheep\".\n :return:\n ","descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Create a method take that accepts a list/array and a number n, and returns a list/array array of the first n elements from the list/array. If you need help, here's a reference: https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range
","status":"passed","steps":[{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([0, 1, 2]) vs actual result ([0, 1, 2])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([51]) and verify the expected output ([51]) vs actual result ([51])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list ([0, 1, 2, 3, 5, 8, 13]) and verify the expected output ([]) vs actual result ([])","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"4762790d78a26553","name":"stdout","source":"4762790d78a26553.txt","type":"text/plain","size":253}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TakeTestCase::0","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Enumerable Magic #25 - Take the First N Elements"},{"name":"feature","value":"Lists"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.enumerable_magic_25.test_take"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/545afd0761aa4c3055001386/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"1f92252f389b32f9","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"cd298347a8b67e93.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd3e27d521a2ebd0.json b/allure-report/data/test-cases/cd3e27d521a2ebd0.json new file mode 100644 index 00000000000..227e179a4cc --- /dev/null +++ b/allure-report/data/test-cases/cd3e27d521a2ebd0.json @@ -0,0 +1 @@ +{"uid":"cd3e27d521a2ebd0","name":"Testing remove_char function","fullName":"kyu_8.remove_first_and_last_character.test_remove_char.RemoveCharTestCase#test_remove_char","historyId":"094915dd36d829c22ed2375a32962ac5","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"description":"\n Test that 'remove_char' function\n removes the first and\n last characters of a string.\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing binary_to_string function\n with various test data\n :return:\n ","descriptionHtml":"Test a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded).
","status":"passed","steps":[{"name":"Enter a binary (0100100001100101011011000110110001101111) and verify the expected output (Hello) vs actual result (Hello)","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (00110001001100000011000100110001) and verify the expected output (1011) vs actual result (1011)","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0101001101110000011000010111001001101011011100110010000001100110011011000110010101110111001011100010111000100000011001010110110101101111011101000110100101101111011011100111001100100000011100100110000101101110001000000110100001101001011001110110100000100001) and verify the expected output (Sparks flew.. emotions ran high!) vs actual result (Sparks flew.. emotions ran high!)","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (0010000101000000001000110010010000100101010111100010011000101010001010000010100101010001010101110100010101110010011101000111100101010101010010010100111101001100011001000110011001100111011000100110001001101000011011100110110101001001010010110100001001001010010010110100100001001001010101010100111100101000001111110011111000111111001111000111111001111110011111100111111001111110001010010010100000101010001001100010010101011110001110010011100000110111001100010011001100101111001011010010111100101010001011010010101000101111) and verify the expected output (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/) vs actual result (!@#$%^&*()QWErtyUIOLdfgbbhnmIKBJKHIUO(?>?<~~~~~)(*&%^98713/-/*-*/)","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a binary (011001100111011101101111001100010110001101101110001101100110011001101010011100010110010101110001) and verify the expected output (fwo1cn6fjqeq) vs actual result (fwo1cn6fjqeq)","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SequenceTestCase::0","time":{"start":1732428194580,"stop":1732428194580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"BINARY"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"FORMATS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Binary to Text (ASCII) Conversion"},{"name":"suite","value":"Character Encodings"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ASCII"},{"name":"tag","value":"CHARACTER ENCODINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.binary_to_text_ascii_conversion.test_binary_to_string"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5583d268479559400d000064","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},"source":"cd72a87cc33096c5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cd858786e595fd45.json b/allure-report/data/test-cases/cd858786e595fd45.json new file mode 100644 index 00000000000..60b249cfec2 --- /dev/null +++ b/allure-report/data/test-cases/cd858786e595fd45.json @@ -0,0 +1 @@ +{"uid":"cd858786e595fd45","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Negative test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Negative test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"d42f3c0595488474","name":"stdout","source":"d42f3c0595488474.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing is_prime util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"ce50dc4c6a1469d8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ce5b44ba32daaf31.json b/allure-report/data/test-cases/ce5b44ba32daaf31.json deleted file mode 100644 index a622268b182..00000000000 --- a/allure-report/data/test-cases/ce5b44ba32daaf31.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ce5b44ba32daaf31","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"description":"\n Testing swap_values function\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5a6a1d1be82c27c9","name":"stdout","source":"5a6a1d1be82c27c9.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Factorial"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Color Choice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"cf2907457d950935.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cf4cdc94d1e2968c.json b/allure-report/data/test-cases/cf4cdc94d1e2968c.json deleted file mode 100644 index 15d29715e98..00000000000 --- a/allure-report/data/test-cases/cf4cdc94d1e2968c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"cf4cdc94d1e2968c","name":"Testing domain_name function","fullName":"kyu_5.extract_the_domain_name_from_url.test_domain_name.DomainNameTestCase#test_domain_name","historyId":"cd64b52319d4c70d68e281e8561ab97f","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"658b23666826b836","name":"stdout","source":"658b23666826b836.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"cf4cdc94d1e2968c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/cfba8b314ab82273.json b/allure-report/data/test-cases/cfba8b314ab82273.json new file mode 100644 index 00000000000..be25c46ac28 --- /dev/null +++ b/allure-report/data/test-cases/cfba8b314ab82273.json @@ -0,0 +1 @@ +{"uid":"cfba8b314ab82273","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"description":"\n Testing alphanumeric function with\n various test inputs\n\n The string has the following conditions\n to be alphanumeric only\n\n 1. At least one character (\"\" is not valid)\n 2. Allowed characters are uppercase or lowercase\n latin letters and digits from 0 to 9\n 3. No whitespaces or underscore or special chars\n\n :return: None\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"199bb2c039260176","name":"stdout","source":"199bb2c039260176.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"DATES/TIME"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Century From Year"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"cfca05e0b975fd2.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d06d6d8db945d4d7.json b/allure-report/data/test-cases/d06d6d8db945d4d7.json new file mode 100644 index 00000000000..c39b1a51e3e --- /dev/null +++ b/allure-report/data/test-cases/d06d6d8db945d4d7.json @@ -0,0 +1 @@ +{"uid":"d06d6d8db945d4d7","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
Invalid large test string
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test valid_parentheses function with\n invalid large string\n :return:\n ","descriptionHtml":"Invalid large test string
","status":"passed","steps":[{"name":"Enter a large invalid test string and verifythat the function returns False.","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Valid Parentheses"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/6411b91a5e71b915d237332d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},"source":"d0cba34627dad034.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d10b96136002b581.json b/allure-report/data/test-cases/d10b96136002b581.json new file mode 100644 index 00000000000..8ecb2f49569 --- /dev/null +++ b/allure-report/data/test-cases/d10b96136002b581.json @@ -0,0 +1 @@ +{"uid":"d10b96136002b581","name":"Testing 'count_sheeps' function: positive flow","fullName":"kyu_8.counting_sheep.test_counting_sheep.CountingSheepTestCase#test_counting_sheep","historyId":"7c789f6ee990c99f027ff5b8c32573fd","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"description":"\n Testing 'count_sheeps' function\n Consider an array of sheep where some sheep\n may be missing from their place.\n We need a function that counts the\n number of sheep present in the array\n (true means present).\n\n :return:\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Battleship field validator\n\n Testing a method that takes a field for well-known board game \"Battleship\"\n as an argument and returns true if it has a valid disposition of ships,\n false otherwise. Argument is guaranteed to be 10*10 two-dimension array.\n Elements in the array are numbers, 0 if the cell is free and 1 if occupied\n by ship.\n ","descriptionHtml":"Testing a method that takes a field for well-known board game \"Battleship\" as an argument and returns true if it has a valid disposition of ships, false otherwise.
","status":"passed","steps":[{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> True, actual -> True","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Field validation: expected -> False, actual -> False","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_BattleshipFieldValidatorTestCase::0","time":{"start":1732764218548,"stop":1732764218548,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"VALIDATION"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Battleship field validator"},{"name":"tag","value":"GAME BOARDS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.battleship_field_validator.test_battleship_validator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52bb6539a4cf1b12d90005b7","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},"source":"d12e38fc8c8ec4dd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d157034757bf8b88.json b/allure-report/data/test-cases/d157034757bf8b88.json new file mode 100644 index 00000000000..ae8b059f464 --- /dev/null +++ b/allure-report/data/test-cases/d157034757bf8b88.json @@ -0,0 +1 @@ +{"uid":"d157034757bf8b88","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"ea8ea3523c9226e8","name":"stdout","source":"ea8ea3523c9226e8.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d157034757bf8b88.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1585e7c78fd8d06.json b/allure-report/data/test-cases/d1585e7c78fd8d06.json deleted file mode 100644 index 9ce219e7afb..00000000000 --- a/allure-report/data/test-cases/d1585e7c78fd8d06.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d1585e7c78fd8d06","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bf26048e33b52cf9","name":"stdout","source":"bf26048e33b52cf9.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Casino chips"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"ebad35c5d56f477f","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d1585e7c78fd8d06.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d1be51368671f899.json b/allure-report/data/test-cases/d1be51368671f899.json new file mode 100644 index 00000000000..e90315aac19 --- /dev/null +++ b/allure-report/data/test-cases/d1be51368671f899.json @@ -0,0 +1 @@ +{"uid":"d1be51368671f899","name":"Testing 'order' function","fullName":"kyu_6.your_order_please.test_order.OrderTestCase#test_order","historyId":"337f8da3fccb836acfa7a9f697d95259","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"description":"\n Your task is to verify that 'order' function\n sorts a given string by following rules:\n\n 1. Each word in the string will contain a single number.\n This number is the position the word should have in the result.\n\n 2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).\n\n 3. If the input string is empty, return an empty string. The words in the\n input String will only contain valid consecutive numbers.\n\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61c3ba5a703e8965","name":"stdout","source":"61c3ba5a703e8965.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Factorial"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Color Choice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d208c625c151e61d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d20d06b45fb65ddb.json b/allure-report/data/test-cases/d20d06b45fb65ddb.json new file mode 100644 index 00000000000..1ffdd6da2fe --- /dev/null +++ b/allure-report/data/test-cases/d20d06b45fb65ddb.json @@ -0,0 +1 @@ +{"uid":"d20d06b45fb65ddb","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"description":"\n Testing tickets function with various test inputs.\n\n The new \"Avengers\" movie has just been released!\n There are a lot of people at the cinema box office\n standing in a huge line. Each of them has a single\n 100, 50 or 25 dollar bill. An \"Avengers\" ticket\n costs 25 dollars.\n\n Vasya is currently working as a clerk.\n He wants to sell a ticket to every single person\n in this line.\n\n Can Vasya sell a ticket to every person and give change\n if he initially has no money and sells the tickets strictly\n in the order people queue?\n\n The function should return YES, if Vasya can sell\n a ticket to every person and give change with the\n bills he has at hand at that moment. Otherwise return NO.\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d4a81151a0ff1cd3","name":"stdout","source":"d4a81151a0ff1cd3.txt","type":"text/plain","size":117}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"story","value":"Will you make it?"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d20f10e7196a7103.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d21849f45071cee3.json b/allure-report/data/test-cases/d21849f45071cee3.json new file mode 100644 index 00000000000..d021607941d --- /dev/null +++ b/allure-report/data/test-cases/d21849f45071cee3.json @@ -0,0 +1 @@ +{"uid":"d21849f45071cee3","name":"Testing permute_a_palindrome (empty string)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_empty_string","historyId":"9f2093620517aae286b85ccc9f40b534","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"description":"\n Testing permute_a_palindrome function with empty string\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1732764220544,"stop":1732764220544,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1732764220546,"stop":1732764220546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"d3b84ca939222bc6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d3cdbdd9e8f95c74.json b/allure-report/data/test-cases/d3cdbdd9e8f95c74.json deleted file mode 100644 index 8ef31cdf892..00000000000 --- a/allure-report/data/test-cases/d3cdbdd9e8f95c74.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d3cdbdd9e8f95c74","name":"Testing gap function","fullName":"kyu_7.find_the_longest_gap.test_gap.GapTestCase#test_gap","historyId":"629f8f3c77ceed21b9aefeb6ebebc433","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"description":"\n Testing gap function with various test inputs\n\n A binary gap within a positive number num is\n any sequence of consecutive zeros that is\n surrounded by ones at both ends in the binary\n representation of num.\n\n The gap function should return the length of\n its longest binary gap.\n\n The function should return 0 if num doesn't\n contain a binary gap.\n :return:\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase","time":{"start":1732428193958,"stop":1732428193958,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Encoding functionality\n ","descriptionHtml":"Verify cipher function. This \"encode\" is used to encode a string by placing each character successively in a diagonal along a set of \"rails\".
","status":"passed","steps":[{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and compare the output vs expected result","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EncodingTestCase::0","time":{"start":1732428193961,"stop":1732428193961,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Rail Fence Cipher: Encoding and Decoding"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"CRYPTOGRAPHY"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"CIPHERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"SECURITY"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.rail_fence_cipher_encoding_and_decoding.test_encoding"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/58c5577d61aefcf3ff000081","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},"source":"d4260955f91337ec.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4597108775e2ebb.json b/allure-report/data/test-cases/d4597108775e2ebb.json new file mode 100644 index 00000000000..fc2a324dd71 --- /dev/null +++ b/allure-report/data/test-cases/d4597108775e2ebb.json @@ -0,0 +1 @@ +{"uid":"d4597108775e2ebb","name":"powers function should return an array of unique numbers","fullName":"kyu_7.sum_of_powers_of_2.test_sum_of_powers_of_2.SumOfPowerOfTwoTestCase#test_powers","historyId":"489e3070dc83756c411301400dd6e3c8","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"description":"\n The function powers takes a single parameter,\n the number n, and should return an array of\n unique numbers.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function dir_reduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['NORTH', 'SOUTH', 'SOUTH', 'EAST', 'WEST', 'NORTH', 'WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'EAST', 'NORTH', 'EAST', 'WEST', 'WEST', 'EAST', 'EAST', 'WEST', 'SOUTH']) and verify the output (['NORTH', 'EAST']) vs expected (['NORTH', 'EAST'])","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['EAST', 'NORTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'SOUTH', 'NORTH', 'NORTH', 'SOUTH', 'WEST', 'NORTH', 'EAST', 'WEST', 'WEST', 'WEST', 'EAST', 'SOUTH', 'SOUTH']) and verify the output (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH']) vs expected (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH'])","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['WEST', 'NORTH', 'EAST', 'EAST', 'EAST', 'EAST', 'WEST', 'WEST', 'WEST', 'WEST', 'NORTH', 'NORTH', 'SOUTH', 'EAST']) and verify the output (['WEST', 'NORTH', 'NORTH', 'EAST']) vs expected (['WEST', 'NORTH', 'NORTH', 'EAST'])","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Directions Reduction"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b0da8ff80b8db87","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0}},{"uid":"f30c1ecba64a2387","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0}},{"uid":"48f4ecefce5c7b7e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"87df803cadfb61a6","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4eb91d777aea105a","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0}},{"uid":"5ea5418b10cdf416","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0}},{"uid":"5e6aa533c6c0fafa","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"d65c16a1b47d468e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"tags":["FUNDAMENTALS"]},"source":"d49eccd60ce84feb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d4bec70d6611b3f1.json b/allure-report/data/test-cases/d4bec70d6611b3f1.json new file mode 100644 index 00000000000..144413a1970 --- /dev/null +++ b/allure-report/data/test-cases/d4bec70d6611b3f1.json @@ -0,0 +1 @@ +{"uid":"d4bec70d6611b3f1","name":"Testing the 'solution' function","fullName":"kyu_6.multiples_of_3_or_5.test_solution.SolutionTestCase#test_solution","historyId":"c387db789a67b80c29f3c3ba2e6c9bce","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"description":"\n Testing solution function\n\n If we list all the natural numbers below 10\n that are multiples of 3 or 5, we get 3, 5, 6 and 9.\n The sum of these multiples is 23.\n\n Finish the solution so that it returns the sum of\n all the multiples of 3 or 5 below the number passed in.\n\n Note: If the number is a multiple of both 3 and 5,\n only count it once.\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1732428194215,"stop":1732428194215,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string and verify the output","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1732428194217,"stop":1732428194217,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"PARSING"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"feature","value":"String"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"d4ccdeadb2c9dbf3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d518579b8137712e.json b/allure-report/data/test-cases/d518579b8137712e.json new file mode 100644 index 00000000000..5961ea39e31 --- /dev/null +++ b/allure-report/data/test-cases/d518579b8137712e.json @@ -0,0 +1 @@ +{"uid":"d518579b8137712e","name":"Should return 'I smell a series!'","fullName":"kyu_8.well_of_ideas_easy_version.test_well_of_ideas_easy_version.WellTestCase#test_well_series","historyId":"fd37424f9957f0d1afe768cce5a8cc08","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"description":"\n if there are more than 2 return\n 'I smell a series!'.\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","steps":[],"attachments":[{"uid":"d9705198a9828f90","name":"stdout","source":"d9705198a9828f90.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"d579d28da21d0458.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d5cb7590517b0cc1.json b/allure-report/data/test-cases/d5cb7590517b0cc1.json new file mode 100644 index 00000000000..4d76d67ffbe --- /dev/null +++ b/allure-report/data/test-cases/d5cb7590517b0cc1.json @@ -0,0 +1 @@ +{"uid":"d5cb7590517b0cc1","name":"goals function verification","fullName":"kyu_8.grasshopper_messi_goals_function.test_messi_goals_function.GoalsTestCase#test_goals","historyId":"7c1c8c6318c554c86b695deacecf1854","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"description":"\n Verify that the function returns Messi's\n total number of goals in all three leagues.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing sum_of_intervals function\n\n The function should accept an array of intervals,\n and return the sum of all the interval lengths.\n\n Overlapping intervals should only be counted once.\n\n Intervals\n Intervals are represented by a pair of integers in\n the form of an array. The first value of the interval\n will always be less than the second value.\n Interval example: [1, 5] is an interval from 1 to 5.\n The length of this interval is 4.\n :return:\n ","descriptionHtml":"Testing sum_of_intervals function
The function should accept an array of intervals, and return the sum of all the interval lengths.
Overlapping intervals should only be counted once.
Intervals
Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.
","status":"passed","steps":[{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(1, 5), (6, 10)]), calculate the result (8) and compare vs expected (8)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(1, 5)]), calculate the result (4) and compare vs expected (4)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(7, 10), (1, 5)]), calculate the result (7) and compare vs expected (7)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(476, 493), (-484, 428)]), calculate the result (929) and compare vs expected (929)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-473, 476)]), calculate the result (949) and compare vs expected (949)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-419, 500)]), calculate the result (919) and compare vs expected (919)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(-153, 312), (360, 469)]), calculate the result (574) and compare vs expected (574)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list of intervals ([(456, 494), (-500, 436)]), calculate the result (974) and compare vs expected (974)","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c3b009b2f078b1df","name":"stdout","source":"c3b009b2f078b1df.txt","type":"text/plain","size":639}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumOfIntervalsTestCase::0","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Sum of Intervals"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARITHMETIC"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Aggregations"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"AGGREGATIONS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_of_intervals.test_sum_of_intervals"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52b7ed099cdc285c300001cd/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},"source":"d611744698a52752.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d645ef6b4817b107.json b/allure-report/data/test-cases/d645ef6b4817b107.json new file mode 100644 index 00000000000..9c7ccc70194 --- /dev/null +++ b/allure-report/data/test-cases/d645ef6b4817b107.json @@ -0,0 +1 @@ +{"uid":"d645ef6b4817b107","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"description":"\n Testing Line Safari functionality\n Negative test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 37, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"String"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"d645ef6b4817b107.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/d6520bfb9bc036e4.json b/allure-report/data/test-cases/d6520bfb9bc036e4.json
new file mode 100644
index 00000000000..6ef2e4df35d
--- /dev/null
+++ b/allure-report/data/test-cases/d6520bfb9bc036e4.json
@@ -0,0 +1 @@
+{"uid":"d6520bfb9bc036e4","name":"Testing Warrior class >>> tom","fullName":"kyu_4.the_greatest_warrior.test_warrior.WarriorTestCase#test_warrior_tom","historyId":"e1d51bbc08408469e032e2f57944bc05","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Warrior class >>> tom\n ","descriptionHtml":"Basic test: level, experience, rank
","status":"passed","steps":[{"name":"Instantiate a new warrior >>> tom","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert level","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert experience","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert rank","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WarriorTestCase::0","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"story","value":"The Greatest Warrior"},{"name":"suite","value":"OOP"},{"name":"tag","value":"RULES"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.the_greatest_warrior.test_warrior"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5941c545f5c394fef900000c","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"aa00c7be0a861177","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0}},{"uid":"988614c511102150","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1}},{"uid":"119afffc6f9f5da8","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"17e43c85790e0335","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6035f0fe38b5a062","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0}},{"uid":"1700dd3f253e8636","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1}},{"uid":"675849fee1009391","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"c1f2317d20109e13","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},"source":"d6520bfb9bc036e4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d65c16a1b47d468e.json b/allure-report/data/test-cases/d65c16a1b47d468e.json deleted file mode 100644 index 9f8a7dbf80d..00000000000 --- a/allure-report/data/test-cases/d65c16a1b47d468e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d65c16a1b47d468e","name":"Testing dirReduc function","fullName":"kyu_5.directions_reduction.test_directions_reduction.DirectionsReductionTestCase#test_directions_reduction","historyId":"b49a06236d1af1a464e84083e52f6b22","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function dirReduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"65e8f59235ab8ed3","name":"stdout","source":"65e8f59235ab8ed3.txt","type":"text/plain","size":204}],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Directions Reduction"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a9fa2bf5091c83a","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS"]},"source":"d65c16a1b47d468e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d6d06cbc227917e.json b/allure-report/data/test-cases/d6d06cbc227917e.json deleted file mode 100644 index 41b2c0373a1..00000000000 --- a/allure-report/data/test-cases/d6d06cbc227917e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d6d06cbc227917e","name":"Testing calc function","fullName":"kyu_2.evaluate_mathematical_expression.test_evaluate.CalcTestCase#test_calc","historyId":"f2e69721b9f301c2454fa419ac365031","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"description":"\n Testing calc class\n\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing calc class\n\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1724735127122,"stop":1724735127122,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"9d4907fb8e8c491a","name":"stdout","source":"9d4907fb8e8c491a.txt","type":"text/plain","size":1904}],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1724735127141,"stop":1724735127141,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"2 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"PARSING STRINGS"},{"name":"tag","value":"MATHEMATICS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"OPERATORS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"parentSuite","value":"Proficient"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"9f56f65d85b3cd20","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0}}],"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"d6d06cbc227917e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d74e6ece91df2759.json b/allure-report/data/test-cases/d74e6ece91df2759.json new file mode 100644 index 00000000000..dd7c8ebd8bc --- /dev/null +++ b/allure-report/data/test-cases/d74e6ece91df2759.json @@ -0,0 +1 @@ +{"uid":"d74e6ece91df2759","name":"Testing number_of_sigfigs function","fullName":"kyu_7.significant_figures.test_number_of_sigfigs.NumberOfSigFigsTestCase#test_number_of_sigfigs","historyId":"3b2ebb1924dbc4e6a73dc5dda19dd323","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"description":"\n Testing number_of_sigfigs function\n with various test inputs\n :return:\n ","descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Given the triangle of consecutive odd numbers verify that the function calculates the row sums of this triangle from the row index (starting at index 1)
","status":"passed","steps":[{"name":"Enter the triangle's row (1) and verify the expected output (1) vs actual result (1)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (2) and verify the expected output (8) vs actual result (8)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (13) and verify the expected output (2197) vs actual result (2197)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (19) and verify the expected output (6859) vs actual result (6859)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter the triangle's row (41) and verify the expected output (68921) vs actual result (68921)","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"88865904ee358dea","name":"stdout","source":"88865904ee358dea.txt","type":"text/plain","size":213}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_OddRowTestCase::0","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"ARITHMETIC"},{"name":"story","value":"Sum of odd numbers"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.sum_of_odd_numbers.test_row_sum_odd_numbers"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55fd2d567d94ac3bc9000064/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8a609bc5e3d23df9","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"d837297408a13c1e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8848c3e22df5008.json b/allure-report/data/test-cases/d8848c3e22df5008.json deleted file mode 100644 index 71b79ce216e..00000000000 --- a/allure-report/data/test-cases/d8848c3e22df5008.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d8848c3e22df5008","name":"a an b are positive numbers","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_positive_numbers","historyId":"d52901f553e103c17fa73d8148d8b604","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calculate_damage with various test data\n :return:\n ","descriptionHtml":"Verify that the function calculates the damage that a particular move would do using the following formula (not the actual one from the game): damage = 50 * (attack / defense) * effectiveness
","status":"passed","steps":[{"name":"Enter a test data (('fire', 'water', 100, 100)) and verify the expected output (25) vs actual result (25.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 100, 100)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('electric', 'fire', 100, 100)) and verify the expected output (50) vs actual result (50.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'electric', 57, 19)) and verify the expected output (150) vs actual result (150.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'water', 40, 40)) and verify the expected output (100) vs actual result (100.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('grass', 'fire', 35, 5)) and verify the expected output (175) vs actual result (175.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data (('fire', 'electric', 10, 2)) and verify the expected output (250) vs actual result (250.0)","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateDamageTestCase::0","time":{"start":1732428195581,"stop":1732428195581,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"FUNCTIONS"},{"name":"feature","value":"Numbers"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"CONTROL FLOW"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Games"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Pokemon Damage Calculator"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.pokemon_damage_calculator.test_calculate_damage"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/536e9a7973130a06eb000e9f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},"source":"d8938caa254e2720.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8970eab34dca31f.json b/allure-report/data/test-cases/d8970eab34dca31f.json deleted file mode 100644 index 02bbcf72937..00000000000 --- a/allure-report/data/test-cases/d8970eab34dca31f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d8970eab34dca31f","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_test","historyId":"eb0582ce0674121869dd4f6fce46e7f3","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"description":"\n 3 is not a square number\n :return:\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n In mathematics the number of x combinations you can take from a\n set of n elements is called the binomial coefficient of n and x,\n or more often n choose x. The formula to compute m = n choose x is:\n m = n! / (x! * (n - x)!) where ! is the factorial operator.\n\n You are a renowned poster designer and painter. You are asked to\n provide 6 posters all having the same design each in 2 colors.\n Posters must all have a different color combination and you have\n the choice of 4 colors: red, blue, yellow, green. How many colors\n can you choose for each poster?\n ","descriptionHtml":"Knowing m (number of posters to design), knowing n (total number of available colors), let us search x (number of colors for each poster so that each poster has a unique combination of colors and the number of combinations is exactly the same as the number of posters). In other words we must find x such as n choose x = m (1) for a given m and a given n; m >= 0 and n > 0. If many x are solutions give as result the smallest x. It can happen that when m is given at random there are no x satisfying equation (1) then return -1.
","status":"passed","steps":[{"name":"Pass m: 6, n: 4 and assert the result: 2 vs expected: 2","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 4 and assert the result: 1 vs expected: 1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 4, n: 2 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 35, n: 7 and assert the result: 3 vs expected: 3","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 36, n: 7 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 6 and assert the result: 0 vs expected: 0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 1, n: 15 and assert the result: 0 vs expected: 0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 2, n: 12 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pass m: 75788358475481302186, n: 87 and assert the result: -1 vs expected: -1","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"835d7d8f35896535","name":"stdout","source":"835d7d8f35896535.txt","type":"text/plain","size":428}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CheckchooseTestCase::0","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"feature","value":"Factorial"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Color Choice"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.color_choice.test_checkchoose"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55be10de92aad5ef28000023/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"d8c3cab37b2e7dbb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8e9539521c4ca00.json b/allure-report/data/test-cases/d8e9539521c4ca00.json deleted file mode 100644 index 67fef333e22..00000000000 --- a/allure-report/data/test-cases/d8e9539521c4ca00.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d8e9539521c4ca00","name":"Testing domain_name function","fullName":"kyu_5.extract_the_domain_name_from_url.test_domain_name.DomainNameTestCase#test_domain_name","historyId":"cd64b52319d4c70d68e281e8561ab97f","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Assert that 'domain_name' function\n returns domain name from given URL string.\n\n :return:\n ","descriptionHtml":"Assert that 'domain_name' function returns domain name from given URL string.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string and verify the output","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"659fcb73d39cab15","name":"stdout","source":"659fcb73d39cab15.txt","type":"text/plain","size":263}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DomainNameTestCase::0","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"DECLARATIVE PROGRAMMING"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ADVANCED LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Extract the domain name from a URL"},{"name":"tag","value":"REGULAR EXPRESSIONS"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.extract_the_domain_name_from_url.test_domain_name"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/514a024011ea4fb54200004b/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"cf4cdc94d1e2968c","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0}}],"categories":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},"source":"d8e9539521c4ca00.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d8f6e0603b79e82b.json b/allure-report/data/test-cases/d8f6e0603b79e82b.json deleted file mode 100644 index b3436f9d44a..00000000000 --- a/allure-report/data/test-cases/d8f6e0603b79e82b.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"d8f6e0603b79e82b","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"description":"\n Test the function called that takes a string of parentheses,\n and determines if the order of the parentheses is valid.\n The function should return true if the string is valid,\n and false if it's invalid.\n\n Examples\n\n \"()\" => true\n \")(()))\" => false\n \"(\" => false\n \"(())((()())())\" => true\n :return:\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isogram and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string aba and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string moOse and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the result","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1732764220556,"stop":1732764220556,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"story","value":"Isograms"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"d9035fa8f853a08a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d94530c5ab1a7ba8.json b/allure-report/data/test-cases/d94530c5ab1a7ba8.json new file mode 100644 index 00000000000..02578755b82 --- /dev/null +++ b/allure-report/data/test-cases/d94530c5ab1a7ba8.json @@ -0,0 +1 @@ +{"uid":"d94530c5ab1a7ba8","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"description":"\n And (â§) is the truth-functional\n operator of logical conjunction\n\n The and of a set of operands is true\n if and only if all of its operands are true.\n\n Source:\n https://en.wikipedia.org/wiki/Logical_conjunction\n\n :return:\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc class\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1732428193894,"stop":1732428193894,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"parentSuite","value":"Proficient"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"PARSING STRINGS"},{"name":"tag","value":"OPERATORS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"2 kyu"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"d95f3589be6b0bcb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/d9826ef645180f7d.json b/allure-report/data/test-cases/d9826ef645180f7d.json new file mode 100644 index 00000000000..98795ccb334 --- /dev/null +++ b/allure-report/data/test-cases/d9826ef645180f7d.json @@ -0,0 +1 @@ +{"uid":"d9826ef645180f7d","name":"Testing pig_it function","fullName":"kyu_5.simple_pig_latin.test_pig_it.PigItTestCase#test_pig_it","historyId":"c5f1cfe64ff8d3a4f16a4166c571797e","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"description":"\n Testing pig_it function\n\n The function should mpve the first letter of each\n word to the end of it, then add \"ay\" to the end\n of the word. Leave punctuation marks untouched.\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"fc440329cf5fac04","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1}},{"uid":"ef31dfc3c5e1eba5","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0}},{"uid":"62dca90ee3fbe009","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"4098e50c368546e","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b1056dd0bc1f2f4e","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1}},{"uid":"de0aa71757f8badf","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0}},{"uid":"5a941d3b90762a67","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"5ef0ca25b0e8e9c5","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"d9d827d0af3ba710.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da018a416a2e5798.json b/allure-report/data/test-cases/da018a416a2e5798.json new file mode 100644 index 00000000000..578c5d4a9e1 --- /dev/null +++ b/allure-report/data/test-cases/da018a416a2e5798.json @@ -0,0 +1 @@ +{"uid":"da018a416a2e5798","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy_diagonal function\n :param self:\n :return:\n ","descriptionHtml":"We want to calculate the sum of the binomial coefficients on a given diagonal. The sum on diagonal 0 is 8 (we'll write it S(7, 0), 7 is the number of the line where we start, 0 is the number of the diagonal). In the same way S(7, 1) is 28, S(7, 2) is 56.
","status":"passed","steps":[{"name":"Enter n: 7, p: 0 and assert the expected: 8 vs result: 8","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 1 and assert the expected: 28 vs result: 28","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 7, p: 2 and assert the expected: 56 vs result: 56","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 3 and assert the expected: 5985 vs result: 5985","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 100, p: 0 and assert the expected: 101 vs result: 101","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 4 and assert the expected: 20349 vs result: 20349","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 20, p: 15 and assert the expected: 20349 vs result: 20349","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 1291, p: 5 and assert the expected: 6385476296235036 vs result: 6385476296235036","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter n: 129100, p: 5 and assert the expected: 6429758786797926366807779220 vs result: 6429758786797926366807779220","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"afc512e4954fc414","name":"stdout","source":"afc512e4954fc414.txt","type":"text/plain","size":524}],"parameters":[],"stepsCount":9,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyDiagonalTestCase::0","time":{"start":1724735128742,"stop":1724735128742,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Diagonal"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.easy_diagonal.test_diagonal"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"da31e11488208aed.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da622740411a3e7a.json b/allure-report/data/test-cases/da622740411a3e7a.json new file mode 100644 index 00000000000..9fbb3b0ba7a --- /dev/null +++ b/allure-report/data/test-cases/da622740411a3e7a.json @@ -0,0 +1 @@ +{"uid":"da622740411a3e7a","name":"Negative numbers","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_negative_numbers","historyId":"baeb278025592b3aed00b5f1bc1265b1","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"description":"\n -1: Negative numbers cannot be square numbers\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"308712033617631b","name":"stdout","source":"308712033617631b.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Array.diff"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"da6f4b236162247c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/da73571dee0329e4.json b/allure-report/data/test-cases/da73571dee0329e4.json deleted file mode 100644 index fcff4e7106b..00000000000 --- a/allure-report/data/test-cases/da73571dee0329e4.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"da73571dee0329e4","name":"'multiply' function verification","fullName":"kyu_8.multiply.test_multiply.MultiplyTestCase#test_multiply","historyId":"aa9027133335818366e5c0c91c936279","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"description":"\n Verify that multiply function\n returns correct result\n :return:\n ","descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"In this kata, you will do addition and subtraction on a given string. The return value must be also a string.
","status":"passed","steps":[{"name":"Enter string (1plus2plus3plus4) and verify the expected output (10) vs actual result (10)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1minus2minus3minus4) and verify the expected output (-8) vs actual result (-8)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (1plus2plus3minus4) and verify the expected output (2) vs actual result (2)","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"9735ba411f0b6bb5","name":"stdout","source":"9735ba411f0b6bb5.txt","type":"text/plain","size":167}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"story","value":"Basic Math (Add or Subtract)"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.basic_math_add_or_subtract.test_calculate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5809b62808ad92e31b000031/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"da87c785a6ba7322.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/daa21ce701ca0a19.json b/allure-report/data/test-cases/daa21ce701ca0a19.json new file mode 100644 index 00000000000..e348ceffaff --- /dev/null +++ b/allure-report/data/test-cases/daa21ce701ca0a19.json @@ -0,0 +1 @@ +{"uid":"daa21ce701ca0a19","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ab818dba8f721c82","name":"stdout","source":"ab818dba8f721c82.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"epic","value":"4 kyu"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"INTEGERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"2993b93df714aac2","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"db7b4c897ddcf1a6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/db9b592f660c3c08.json b/allure-report/data/test-cases/db9b592f660c3c08.json new file mode 100644 index 00000000000..903ae4db6f3 --- /dev/null +++ b/allure-report/data/test-cases/db9b592f660c3c08.json @@ -0,0 +1 @@ +{"uid":"db9b592f660c3c08","name":"Testing 'numericals' function","fullName":"kyu_6.numericals_of_string.test_numericals.NumericalsTestCase#test_numericals","historyId":"d2b4dccd0eb8dfd6ef62ac0349f0f6a7","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"description":"\n Testing 'numericals' function\n :return:\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"8d8a3475c1ccc5fb","name":"stdout","source":"8d8a3475c1ccc5fb.txt","type":"text/plain","size":375}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"dbd543834c91eda6.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dbe420147c1da53b.json b/allure-report/data/test-cases/dbe420147c1da53b.json new file mode 100644 index 00000000000..6dc10586f99 --- /dev/null +++ b/allure-report/data/test-cases/dbe420147c1da53b.json @@ -0,0 +1 @@ +{"uid":"dbe420147c1da53b","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"description":"\n Testing alphanumeric function with\n various test inputs\n\n The string has the following conditions\n to be alphanumeric only\n\n 1. At least one character (\"\" is not valid)\n 2. Allowed characters are uppercase or lowercase\n latin letters and digits from 0 to 9\n 3. No whitespaces or underscore or special chars\n\n :return: None\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for is_prime function testing\n :return:\n ","descriptionHtml":"Positive test cases for is_prime function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: True.","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fec7d456d7e1f9e8","name":"stdout","source":"fec7d456d7e1f9e8.txt","type":"text/plain","size":22}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsPrimeTestCase::0","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing is_prime util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_is_prime"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"de75cf0cb11d4a8a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dea681370cee7fa1.json b/allure-report/data/test-cases/dea681370cee7fa1.json deleted file mode 100644 index aa0e315e37a..00000000000 --- a/allure-report/data/test-cases/dea681370cee7fa1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"dea681370cee7fa1","name":"Testing is_palindrome function","fullName":"kyu_8.is_it_a_palindrome.test_is_palindrome.IsPalindromeTestCase#test_is_palindrome","historyId":"4967a6ca0665c8eeeec85898f8bda8f5","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"description":"\n Testing is_palindrome function\n with various test inputs\n\n The function should check if a\n given string (case insensitive)\n is a palindrome.\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing done_or_not function\n\n Testing a function done_or_not/DoneOrNot passing a board\n (list[list_lines]) as parameter. If the board is valid return\n 'Finished!', otherwise return 'Try again!'\n :return:\n ","descriptionHtml":"Testing a function done_or_not/DoneOrNot passing a board (list[list_lines]) as parameter. If the board is valid return 'Finished!', otherwise return 'Try again!'
","status":"passed","steps":[{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter sudoku and verify the output.","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ff19f958435ebad0","name":"stdout","source":"ff19f958435ebad0.txt","type":"text/plain","size":676}],"parameters":[],"stepsCount":3,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DidIFinishedSudokuTestCase::0","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"LOOPS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Did I Finish my Sudoku?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.did_i_finish_my_sudoku.test_did_i_finish_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53db96041f1a7d32dc0004d2/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b93db50e25bdce85","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},"source":"df3147d31fee6968.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/df6ed9e3e14c891a.json b/allure-report/data/test-cases/df6ed9e3e14c891a.json new file mode 100644 index 00000000000..ece4917203e --- /dev/null +++ b/allure-report/data/test-cases/df6ed9e3e14c891a.json @@ -0,0 +1 @@ +{"uid":"df6ed9e3e14c891a","name":"Testing first_non_repeating_letter function","fullName":"kyu_5.first_non_repeating_character.test_first_non_repeating_letter.FirstNonRepeatingLetterTestCase#test_first_non_repeating_letter","historyId":"cff7d7f7b55b35458669cd92cb129d06","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"description":"\n Testing a function named first_non_repeating_letter\n that takes a string input, and returns the first character\n that is not repeated anywhere in the string.\n\n For example, if given the input 'stress', the function\n should return 't', since the letter t only occurs once\n in the string, and occurs first in the string.\n\n As an added challenge, upper- and lowercase letters are\n considered the same character, but the function should\n return the correct case for the initial letter. For example,\n the input 'sTreSS' should return 'T'.\n\n If a string contains all repeating characters, it should\n return an empty string (\"\") or None -- see sample tests.\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing easy line function exception\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"dfb2b5c458a3460e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/dfb4af6de633e98.json b/allure-report/data/test-cases/dfb4af6de633e98.json deleted file mode 100644 index e05b6a9baa1..00000000000 --- a/allure-report/data/test-cases/dfb4af6de633e98.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"dfb4af6de633e98","name":"powers function should return an array of unique numbers","fullName":"kyu_7.sum_of_powers_of_2.test_sum_of_powers_of_2.SumOfPowerOfTwoTestCase#test_powers","historyId":"489e3070dc83756c411301400dd6e3c8","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"description":"\n The function powers takes a single parameter,\n the number n, and should return an array of unique numbers.\n :return:\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1732428193941,"stop":1732428193941,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter spiral list size and verify the result","time":{"start":1732428193942,"stop":1732428193942,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1732428193943,"stop":1732428193943,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"e032c4a87bedaab7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e0604dcf0c194a67.json b/allure-report/data/test-cases/e0604dcf0c194a67.json deleted file mode 100644 index 6cfafe4c208..00000000000 --- a/allure-report/data/test-cases/e0604dcf0c194a67.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e0604dcf0c194a67","name":"Positive test cases for gen_primes function testing","fullName":"utils.primes.test_primes_generator.GenPrimesTestCase#test_gen_primes_positive","historyId":"c191b2a68976eb18aef4345f496d79e7","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"524678a9109bb789","name":"stdout","source":"524678a9109bb789.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing gen_primes util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"e0604dcf0c194a67.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e08a8a15da9b3ad.json b/allure-report/data/test-cases/e08a8a15da9b3ad.json new file mode 100644 index 00000000000..86eba1282e3 --- /dev/null +++ b/allure-report/data/test-cases/e08a8a15da9b3ad.json @@ -0,0 +1 @@ +{"uid":"e08a8a15da9b3ad","name":"test_josephus_survivor","fullName":"kyu_5.josephus_survivor.test_josephus_survivor.JosephusSurvivorTestCase#test_josephus_survivor","historyId":"334b612b45e8a87e83a3482704f4ba8a","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"description":"\n In this kata you have to correctly return who\n is the \"survivor\", ie: the last element of a\n Josephus permutation.\n :return:\n ","descriptionHtml":" In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 38, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"LISTS"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Josephus Survivor"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"abbcc324b9e8a1ea","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764219113,"stop":1732764219113,"duration":0}},{"uid":"cc2dceff6dc83502","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194439,"stop":1732428194439,"duration":0}},{"uid":"f7d62cc3e2943023","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"28b8fa13ba65f773","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472921,"stop":1724733472921,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"6ef44675aea47099","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764219113,"stop":1732764219113,"duration":0}},{"uid":"70eff3ae24ccc67a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194439,"stop":1732428194439,"duration":0}},{"uid":"84fd4c67efee5295","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"62bf772c3a2aa5d2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}}]},"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"e08a8a15da9b3ad.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/e09cd6c2a9399b84.json b/allure-report/data/test-cases/e09cd6c2a9399b84.json
deleted file mode 100644
index 4a938d5ed28..00000000000
--- a/allure-report/data/test-cases/e09cd6c2a9399b84.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"e09cd6c2a9399b84","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"ad5cb658d7b3a6f1","name":"stdout","source":"ad5cb658d7b3a6f1.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Century From Year"},{"name":"feature","value":"Math"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"DATES/TIME"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"e13311d47c82f25c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e15a7b3e54da206a.json b/allure-report/data/test-cases/e15a7b3e54da206a.json new file mode 100644 index 00000000000..cd29d69a2a3 --- /dev/null +++ b/allure-report/data/test-cases/e15a7b3e54da206a.json @@ -0,0 +1 @@ +{"uid":"e15a7b3e54da206a","name":"'fix_the_meerkat function function verification","fullName":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat.FixTheMeerkatTestCase#test_fix_the_meerkat","historyId":"11e49f45979df22d4f121435101e70bc","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"7a6a4e0267245cc3","name":"stdout","source":"7a6a4e0267245cc3.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"My head is at the wrong end!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"e15a7b3e54da206a.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e160d8cbf25955af.json b/allure-report/data/test-cases/e160d8cbf25955af.json deleted file mode 100644 index de01e720238..00000000000 --- a/allure-report/data/test-cases/e160d8cbf25955af.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e160d8cbf25955af","name":"Testing 'factorial' function","fullName":"kyu_7.factorial.test_factorial.FactorialTestCase#test_factorial","historyId":"9f3faef7cd6efbe5a04de4e9c02ed5e1","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"description":"\n Testing 'factorial' function\n\n In mathematics, the factorial of a non-negative integer n,\n denoted by n!, is the product of all positive integers less\n than or equal to n. For example: 5! = 5 * 4 * 3 * 2 * 1 = 120.\n By convention the value of 0! is 1.\n\n Write a function to calculate factorial for a given input.\n If input is below 0 or above 12 throw an exception of type\n ValueError (Python).\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Positive test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Positive test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Compare expected list with the list of actual results","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"290c988fd03516ad","name":"stdout","source":"290c988fd03516ad.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing gen_primes util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"e1aa1981a2c5874d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1b199f4400527d4.json b/allure-report/data/test-cases/e1b199f4400527d4.json new file mode 100644 index 00000000000..c10e29690c5 --- /dev/null +++ b/allure-report/data/test-cases/e1b199f4400527d4.json @@ -0,0 +1 @@ +{"uid":"e1b199f4400527d4","name":"Testing done_or_not function","fullName":"kyu_5.tic_tac_toe_checker.test_checker.IsSolvedTestCase#test_is_solved","historyId":"059761e477dad0853fa6e0ed172a78f0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3b3cd319fcba15f6","name":"stdout","source":"3b3cd319fcba15f6.txt","type":"text/plain","size":277}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAY"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"e1b199f4400527d4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e1e70dabc7dad91e.json b/allure-report/data/test-cases/e1e70dabc7dad91e.json deleted file mode 100644 index 7cdba517844..00000000000 --- a/allure-report/data/test-cases/e1e70dabc7dad91e.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e1e70dabc7dad91e","name":"All chars are in upper case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_caps","historyId":"f47162ca0e9bacec154c9094fd33e635","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test namelist\n\n Given:\n an array containing hashes of names\n\n Return:\n a string formatted as a list of names separated by commas\n except for the last two names, which should be separated\n by an ampersand.\n\n :return:\n ","descriptionHtml":"Should a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand.
","status":"passed","steps":[],"attachments":[{"uid":"843a9b33796b69ab","name":"stdout","source":"843a9b33796b69ab.txt","type":"text/plain","size":717}],"parameters":[],"stepsCount":0,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NamelistTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Format a string of names like 'Bart, Lisa & Maggie'."},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.format_string_of_names.test_namelist"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"e1fc0b63790bda69.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e21d0927a22c6c46.json b/allure-report/data/test-cases/e21d0927a22c6c46.json new file mode 100644 index 00000000000..abe3f2e3165 --- /dev/null +++ b/allure-report/data/test-cases/e21d0927a22c6c46.json @@ -0,0 +1 @@ +{"uid":"e21d0927a22c6c46","name":"Testing to_alternating_case function","fullName":"kyu_8.alternating_case.test_alternating_case.AlternatingCaseTestCase#test_alternating_case","historyId":"470b5bb32c448e7433bb94b222d4d8b0","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"description":"\n Testing to_alternating_case function\n :return:\n ","descriptionHtml":"Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Your task is to verify that 'order' function sorts a given string by following rules:1. Each word in the string will contain a single number. This number is the position the word should have in the result.
2. Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
3. If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1732764220267,"stop":1732764220267,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing potion function with various test inputs\n :return:\n ","descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1732764220268,"stop":1732764220268,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1732764220270,"stop":1732764220270,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"suite","value":"Classes"},{"name":"story","value":"Potion Class 101"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"e427ef86cabe9ddd.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e42b69525abdede6.json b/allure-report/data/test-cases/e42b69525abdede6.json new file mode 100644 index 00000000000..1548e49abca --- /dev/null +++ b/allure-report/data/test-cases/e42b69525abdede6.json @@ -0,0 +1 @@ +{"uid":"e42b69525abdede6","name":"Testing make_upper_case function","fullName":"kyu_8.make_upper_case.test_make_upper_case.MakeUpperCaseTestCase#test_make_upper_case","historyId":"9fe496d12a67f53b3208a0b823f2d8c3","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"description":"\n Sample Tests for make_upper_case function\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: pop\n :return:\n ","descriptionHtml":"Testing pop method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Pop an un-existing item and verify the result","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"aedb47484495e540","name":"stdout","source":"aedb47484495e540.txt","type":"text/plain","size":378}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"e49d46057090e83e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e4e2296a825eac3f.json b/allure-report/data/test-cases/e4e2296a825eac3f.json deleted file mode 100644 index c010c2aee24..00000000000 --- a/allure-report/data/test-cases/e4e2296a825eac3f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e4e2296a825eac3f","name":"test_permutations","fullName":"kyu_4.permutations.test_permutations.PermutationsTestCase#test_permutations","historyId":"acc964c78dd821707ef4a0652a683e9a","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"description":"\n Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"Permutations"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"PERMUTATIONS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"e4e2296a825eac3f.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/e50290ceef277be1.json b/allure-report/data/test-cases/e50290ceef277be1.json
new file mode 100644
index 00000000000..430c73eccb7
--- /dev/null
+++ b/allure-report/data/test-cases/e50290ceef277be1.json
@@ -0,0 +1 @@
+{"uid":"e50290ceef277be1","name":"Square numbers (positive)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_25","historyId":"e1a83b5e7221ab7611b800cba5c64efa","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"description":"\n 25 is a square number\n :return:\n ","descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should raise exception for invalid n (n < 0) values.
","status":"passed","steps":[{"name":"Enter invalid n (-1) and assert exception message: ERROR: invalid n (-1) value. n must be >= 0).","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"Math"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"e5822ae7754d2e8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e5ac2209dd79eabb.json b/allure-report/data/test-cases/e5ac2209dd79eabb.json deleted file mode 100644 index 77e72aff325..00000000000 --- a/allure-report/data/test-cases/e5ac2209dd79eabb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e5ac2209dd79eabb","name":"test_ips_between","fullName":"kyu_5.count_ip_addresses.test_ips_between.IpsBetweenTestCase#test_ips_between","historyId":"164912053c696e73c7be4b3a14287ecc","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"description":"\n Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n ","descriptionHtml":" Testing ips_between function\n\n Testing a function that receives two IPv4 addresses,\n and returns the number of addresses between them\n (including the first one, excluding the last one).\n\n All inputs will be valid IPv4 addresses in the form\n of strings. The last address will always be greater\n than the first one.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\count_ip_addresses\\\\test_ips_between.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Count IP Addresses"},{"name":"tag","value":"PARSING"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.count_ip_addresses.test_ips_between"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/526989a41034285187000de4/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e7b87e8229dd1a3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472561,"stop":1724733472561,"duration":0}}],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"e5ac2209dd79eabb.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/e5feb33263ee430e.json b/allure-report/data/test-cases/e5feb33263ee430e.json
new file mode 100644
index 00000000000..e441c91b562
--- /dev/null
+++ b/allure-report/data/test-cases/e5feb33263ee430e.json
@@ -0,0 +1 @@
+{"uid":"e5feb33263ee430e","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732764220401,"stop":1732764220401,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1732764220403,"stop":1732764220403,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"story","value":"Who likes it?"},{"name":"tag","value":"FORMATTING"},{"name":"epic","value":"6 kyu"},{"name":"feature","value":"String"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"e5feb33263ee430e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e60399983521438f.json b/allure-report/data/test-cases/e60399983521438f.json new file mode 100644 index 00000000000..bb3b032addd --- /dev/null +++ b/allure-report/data/test-cases/e60399983521438f.json @@ -0,0 +1 @@ +{"uid":"e60399983521438f","name":"Test that no_space function removes the spaces","fullName":"kyu_8.remove_string_spaces.test_remove_string_spaces.NoSpaceTestCase#test_something","historyId":"8069a1b5a4342457d2dabf5819382a2e","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"description":"\n Test that no_space function removes the spaces\n from the string, then return the resultant string.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1dd67237b9ff3f68","name":"stdout","source":"1dd67237b9ff3f68.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Find the safest places in town"},{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Novice"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"451dd55d479da390","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0}}],"categories":[],"tags":["ALGORITHMS"]},"source":"e798d2f5cc38e024.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7ac97a954c5e722.json b/allure-report/data/test-cases/e7ac97a954c5e722.json new file mode 100644 index 00000000000..9cc893a9e62 --- /dev/null +++ b/allure-report/data/test-cases/e7ac97a954c5e722.json @@ -0,0 +1 @@ +{"uid":"e7ac97a954c5e722","name":"Testing length function where head = None","fullName":"kyu_7.fun_with_lists_length.test_length.LengthTestCase#test_length_none","historyId":"2ab55d25b4f71b0a35e531ab6cae710e","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"description":"\n Testing length function\n where head = None\n\n The method length, which accepts a linked list\n (head), and returns the length of the list.\n :return:\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1732764218634,"stop":1732764218634,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"e7d0a39712ee3eee.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e7e1c54963ba7bf7.json b/allure-report/data/test-cases/e7e1c54963ba7bf7.json new file mode 100644 index 00000000000..ecf9713fff6 --- /dev/null +++ b/allure-report/data/test-cases/e7e1c54963ba7bf7.json @@ -0,0 +1 @@ +{"uid":"e7e1c54963ba7bf7","name":"Testing make_class function","fullName":"kyu_7.make_class.test_make_class.MakeClassTestCase#test_make_class","historyId":"2fc0cf409058113d339743775fa3158e","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[{"name":"Assert that classes Bob and Bob have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes Dog and Dog have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 5 and 5 have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes good and good have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes 50lb and 50lb have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert that classes brown and brown have equal properties","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1732764220582,"stop":1732764220582,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Make Class"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"OOP"},{"name":"tag","value":"GAMES"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},"source":"e7e1c54963ba7bf7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e83e1a2466fbcf0b.json b/allure-report/data/test-cases/e83e1a2466fbcf0b.json new file mode 100644 index 00000000000..b1dc093810a --- /dev/null +++ b/allure-report/data/test-cases/e83e1a2466fbcf0b.json @@ -0,0 +1 @@ +{"uid":"e83e1a2466fbcf0b","name":"Testing encrypt_this function","fullName":"kyu_6.encrypt_this.test_encrypt_this.EncryptThisTestCase#test_encrypt_this","historyId":"69a156fb0b04999e58427537301412d4","time":{"start":1724733473889,"stop":1724733473905,"duration":16},"description":"\n Testing encrypt_this function\n :param self:\n :return:\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1732764219337,"stop":1732764219338,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1732764219338,"stop":1732764219338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219338,"stop":1732764219338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219338,"stop":1732764219338,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1732764219338,"stop":1732764219339,"duration":1},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1732764219359,"stop":1732764219359,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"CLASSES"},{"name":"story","value":"DefaultList"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"e8a2735e9df336cb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e8f6c075972e7fae.json b/allure-report/data/test-cases/e8f6c075972e7fae.json deleted file mode 100644 index 06290c07123..00000000000 --- a/allure-report/data/test-cases/e8f6c075972e7fae.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"e8f6c075972e7fae","name":"powers function should return an array of unique numbers","fullName":"kyu_7.sum_of_powers_of_2.test_sum_of_powers_of_2.SumOfPowerOfTwoTestCase#test_powers","historyId":"489e3070dc83756c411301400dd6e3c8","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"description":"\n The function powers takes a single parameter,\n the number n, and should return an array of unique numbers.\n :return:\n ","descriptionHtml":"The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
The function should do the following:
1. It must start with a hashtag (#).
2. All words must have their first letter capitalized.
3. If the final result is longer than 140 chars it must return false.
4. If the input or the result is an empty string it must return false.
Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing next_bigger function\n\n You have to test a function that takes a positive integer\n number and returns the next bigger number formed by the same digits:\n\n 12 ==> 21\n 513 ==> 531\n 2017 ==> 2071\n\n If no bigger number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next bigger number formed by the same digits:
12 ==> 21
513 ==> 531
2017 ==> 2071
If no bigger number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (6), generate the result (-1) and compare it with expected (-1)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (12), generate the result (21) and compare it with expected (21)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (513), generate the result (531) and compare it with expected (531)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (2017), generate the result (2071) and compare it with expected (2071)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (414), generate the result (441) and compare it with expected (441)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (144), generate the result (414) and compare it with expected (414)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (6938652), generate the result (6952368) and compare it with expected (6952368)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter an integer (123456789), generate the result (123456798) and compare it with expected (123456798)","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"fb0df6afc6219df9","name":"stdout","source":"fb0df6afc6219df9.txt","type":"text/plain","size":434}],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextBiggerTestCase::0","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"story","value":"Next bigger number with the same digits"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_bigger_number_with_the_same_digits.test_next_bigger"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55983863da40caa2c900004e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"e97e117a0c1b5372.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/e9c0a9198a3e1b18.json b/allure-report/data/test-cases/e9c0a9198a3e1b18.json new file mode 100644 index 00000000000..92dd2202a87 --- /dev/null +++ b/allure-report/data/test-cases/e9c0a9198a3e1b18.json @@ -0,0 +1 @@ +{"uid":"e9c0a9198a3e1b18","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"description":"\n Testing 'sentencify' function.\n The function should:\n 1. Capitalise the first letter of the first word.\n 2. Add a period (.) to the end of the sentence.\n 3. Join the words into a complete string, with spaces.\n 4. Do no other manipulation on the words.\n\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing make_class function\n :return:\n ","descriptionHtml":"Give me the power to create a similar class like this:
Animal = make_class(\"name\", \"species\", \"age\", \"health\", \"weight\", \"color\")
","status":"passed","steps":[{"name":"Test class creation by using a function","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[{"name":"Assert that classes have Bob arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have Dog arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have 5 arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have good arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have 50lb arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Assert that classes have brown arg","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"cc5f43f6454a1720","name":"stdout","source":"cc5f43f6454a1720.txt","type":"text/plain","size":148}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_MakeClassTestCase::0","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Make Class"},{"name":"parentSuite","value":"Beginner"},{"name":"feature","value":"Classes"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"OOP"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.make_class.test_make_class"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":[]},"source":"ea06cb7ae28c8945.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea50e73cff32206e.json b/allure-report/data/test-cases/ea50e73cff32206e.json new file mode 100644 index 00000000000..7613f66606e --- /dev/null +++ b/allure-report/data/test-cases/ea50e73cff32206e.json @@ -0,0 +1 @@ +{"uid":"ea50e73cff32206e","name":"Testing create_city_map function","fullName":"kyu_5.find_the_safest_places_in_town.test_advice.FirstAdviceTestCase#test_create_city_map","historyId":"e437e22193ec7315819824ea1255ab3f","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing a function named create_city_map where:\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should generate city map with coordinates.\n :return:\n ","descriptionHtml":"The function should generate city map with coordinates.
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"a243f5a6e2aef08","name":"stdout","source":"a243f5a6e2aef08.txt","type":"text/plain","size":326}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"ea50e73cff32206e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ea6a7fadbe04578a.json b/allure-report/data/test-cases/ea6a7fadbe04578a.json new file mode 100644 index 00000000000..3500a78a336 --- /dev/null +++ b/allure-report/data/test-cases/ea6a7fadbe04578a.json @@ -0,0 +1 @@ +{"uid":"ea6a7fadbe04578a","name":"Test with empty string","fullName":"kyu_8.reversed_strings.test_reversed_strings.ReversedStringsTestCase#test_reversed_strings_empty","historyId":"2af6aa545c98eb65f8404392b6468813","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"description":"\n Test with empty string\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"10a01d4023ecf988","name":"stdout","source":"10a01d4023ecf988.txt","type":"text/plain","size":2817}],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1724735127438,"stop":1724735127438,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"GAMES"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"PUZZLES"},{"name":"feature","value":"Control Flow"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"VALIDATION"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"ea9306ba22046ff3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ead644ae8ee031c3.json b/allure-report/data/test-cases/ead644ae8ee031c3.json new file mode 100644 index 00000000000..d2ccfa73e5f --- /dev/null +++ b/allure-report/data/test-cases/ead644ae8ee031c3.json @@ -0,0 +1 @@ +{"uid":"ead644ae8ee031c3","name":"Testing count_letters_and_digits function","fullName":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits.CalculateTestCase#test_count_letters_and_digits","historyId":"0e1169325045c4d7d4ed6982c76387ed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":2,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"Test a method that can determine how many letters and digits are in a given string.
","status":"passed","steps":[{"name":"Enter string (n!!ice!!123) and verify the expected output (7) vs actual result (7)","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (de?=?=tttes!!t) and verify the expected output (8) vs actual result (8)","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string () and verify the expected output (0) vs actual result (0)","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (!@#$%^&`~.) and verify the expected output (0) vs actual result (0)","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter string (u_n_d_e_r__S_C_O_R_E) and verify the expected output (10) vs actual result (10)","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalculateTestCase::0","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"feature","value":"String"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Help Bob count letters and digits."},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.help_bob_count_letters_and_digits.test_count_letters_and_digits"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5738f5ea9545204cec000155","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"d3b84ca939222bc6","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0}},{"uid":"a124532204114d8a","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"183ba5aa4a18280","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0}},{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"ead644ae8ee031c3.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eae8b41d97e1bc2d.json b/allure-report/data/test-cases/eae8b41d97e1bc2d.json new file mode 100644 index 00000000000..444988b941f --- /dev/null +++ b/allure-report/data/test-cases/eae8b41d97e1bc2d.json @@ -0,0 +1 @@ +{"uid":"eae8b41d97e1bc2d","name":"'multiply' function verification with empty list","fullName":"kyu_7.remove_the_minimum.test_remove_the_minimum.RemoveSmallestTestCase#test_remove_smallest_empty_list","historyId":"15c98dd02f856858ef67a88bd3c8ad78","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"description":"\n Test with empty list\n :return:\n ","descriptionHtml":" Test a function `smallest` which will return an array or a tuple or a string\n depending on the language (see "Sample Tests") with\n\n 1) the smallest number you got\n 2) the index i of the digit d you took, i as small as possible\n 3) the index j (as small as possible) where you insert this digit d to have the smallest number.\n\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\find_the_smallest\\\\test_smallest.py', 29, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"Lists"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Find the smallest"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_smallest.test_smallest"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/573992c724fc289553000e95/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"eb2c31b2b7e0b335.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/eb6afac49e3912b1.json b/allure-report/data/test-cases/eb6afac49e3912b1.json
new file mode 100644
index 00000000000..ce03c099e10
--- /dev/null
+++ b/allure-report/data/test-cases/eb6afac49e3912b1.json
@@ -0,0 +1 @@
+{"uid":"eb6afac49e3912b1","name":"AND logical operator","fullName":"kyu_8.logical_calculator.test_logical_calculator.LogicalCalculatorTestCase#test_logical_calc_and","historyId":"49af4a8ebdc007fac4acbc085138b80e","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"description":"\n And (â§) is the truth-functional\n operator of logical conjunction\n\n The and of a set of operands is true\n if and only if all of its operands are true.\n\n Source:\n https://en.wikipedia.org/wiki/Logical_conjunction\n\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"d98685c9fe133870","name":"stdout","source":"d98685c9fe133870.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE"},{"name":"tag","value":"FEATURES"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LANGUAGE"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"tag","value":"ADVANCED"},{"name":"tag","value":"PROGRAMMING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},"source":"eb79826fc1ce02b1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/eb8f6057b9598daa.json b/allure-report/data/test-cases/eb8f6057b9598daa.json new file mode 100644 index 00000000000..95e4cb04784 --- /dev/null +++ b/allure-report/data/test-cases/eb8f6057b9598daa.json @@ -0,0 +1 @@ +{"uid":"eb8f6057b9598daa","name":"Non square numbers (negative)","fullName":"kyu_7.you_are_square.test_you_are_square.YouAreSquareTestCase#test_is_square_26","historyId":"49ea03f1d04a92057a336da49714852c","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"description":"\n 26 is not a square number\n :return:\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":true,"beforeStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Walker class\n Testing starting position property based on positive grids\n ","descriptionHtml":"Testing position property based on positive grids.
","status":"passed","steps":[{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test grid and compare the output/position vs expected result X","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_WalkerClassTestCase::0","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_walker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"critical","retries":[{"uid":"63b9cb3528bcd1e8","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1}},{"uid":"8ade4c7a0e59dd30","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1}},{"uid":"5421992f655c2a5d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"7abec7f9960933cc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472327,"stop":1724733472327,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":3,"unknown":0,"total":5},"items":[{"uid":"4b2984e4fa36f94","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1}},{"uid":"413fd3063d3e7dc4","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1}},{"uid":"ee4f0501c1152713","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"3edaeb1c9114b312","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"tags":["STRINGS","ALGORITHMS"]},"source":"eb94d03877c16bb4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebad35c5d56f477f.json b/allure-report/data/test-cases/ebad35c5d56f477f.json deleted file mode 100644 index 6ef4f5bd44d..00000000000 --- a/allure-report/data/test-cases/ebad35c5d56f477f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ebad35c5d56f477f","name":"Testing solve function","fullName":"kyu_6.casino_chips.test_solve.SolveTestCase#test_solve","historyId":"47a8a15643c132c9b9f0d902bcff28dd","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"You will be given an array representing the number of chips of each color and your task is to return the maximum number of days you can pick the chips. Each day you need to take exactly two chips.
","status":"passed","steps":[{"name":"Enter an array ([8, 8, 8]) and verify the expected output (12) vs actual result (12)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 1, 1]) and verify the expected output (1) vs actual result (1)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([8, 1, 4]) and verify the expected output (5) vs actual result (5)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([7, 4, 10]) and verify the expected output (10) vs actual result (10)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([12, 12, 12]) and verify the expected output (18) vs actual result (18)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([6, 6, 6]) and verify the expected output (9) vs actual result (9)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 23, 2]) and verify the expected output (3) vs actual result (3)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([9, 8, 6]) and verify the expected output (11) vs actual result (11)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([10, 9, 6]) and verify the expected output (12) vs actual result (12)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([4, 4, 3]) and verify the expected output (5) vs actual result (5)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([1, 2, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([4, 1, 1]) and verify the expected output (2) vs actual result (2)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an array ([8, 2, 8]) and verify the expected output (9) vs actual result (9)","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"bc5d49dc5212bf5e","name":"stdout","source":"bc5d49dc5212bf5e.txt","type":"text/plain","size":640}],"parameters":[],"stepsCount":13,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SolveTestCase::0","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Casino chips"},{"name":"tag","value":"MATHEMATICS"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.casino_chips.test_solve"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e0b72d2d772160011133654/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ebad35c5d56f477f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ebdfd3783858102.json b/allure-report/data/test-cases/ebdfd3783858102.json new file mode 100644 index 00000000000..839e3d1d546 --- /dev/null +++ b/allure-report/data/test-cases/ebdfd3783858102.json @@ -0,0 +1 @@ +{"uid":"ebdfd3783858102","name":"String with mixed type of chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_mixed","historyId":"befc81f16d3ea9a4d57ecd3fed78faff","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":" Testing using basic test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ebf90564de7fa557.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/ec0c7de9a70a5f5e.json b/allure-report/data/test-cases/ec0c7de9a70a5f5e.json
new file mode 100644
index 00000000000..e175c37e250
--- /dev/null
+++ b/allure-report/data/test-cases/ec0c7de9a70a5f5e.json
@@ -0,0 +1 @@
+{"uid":"ec0c7de9a70a5f5e","name":"Testing toJadenCase function (positive)","fullName":"kyu_7.jaden_casing_strings.test_jaden_casing_strings.JadenCasingStringsTestCase#test_to_jaden_case_positive","historyId":"7c48f5c6aa887d1bc76d081b028cf7cf","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"description":"\n Simple positive test\n :return:\n ","descriptionHtml":"Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Test the function taht organizes a sports league in a round-robin-system. Each team meets all other teams. In your league a win gives a team 2 points, a draw gives both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams:
Testing using medium test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 46, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"story","value":"Diophantine Equation"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"77d417f099b71c46","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218853,"stop":1732764218853,"duration":0}},{"uid":"8da0b58109862b1b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194198,"stop":1732428194198,"duration":0}},{"uid":"8c2738ac8b329dff","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"3bf609775738b0d6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472577,"stop":1724733472577,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"8e9b4227c17ce17f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218853,"stop":1732764218853,"duration":0}},{"uid":"571176bf000b455b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194198,"stop":1732428194198,"duration":0}},{"uid":"87acfa055dcbe26a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"a064a48d91c28f13","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"ec58e61448a9c6a8.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/ecd029e0f98c606.json b/allure-report/data/test-cases/ecd029e0f98c606.json
deleted file mode 100644
index 88bd09b819e..00000000000
--- a/allure-report/data/test-cases/ecd029e0f98c606.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"ecd029e0f98c606","name":"Testing digital_root function","fullName":"kyu_6.sum_of_digits_digital_root.test_digital_root.DigitalRootTestCase#test_digital_root","historyId":"3d4d9d606fbf24bad8abb0f0f85e6130","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"description":"\n In this kata, you must create a digital root function.\n\n A digital root is the recursive sum of all the digits\n in a number. Given n, take the sum of the digits of n.\n If that value has more than one digit, continue reducing\n in this way until a single-digit number is produced. This\n is only applicable to the natural numbers.\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Negative test cases for gen_primes function testing\n :return:\n ","descriptionHtml":"Negative test cases for gen_primes function testing.
","status":"passed","steps":[{"name":"Answer for all numbers from the test data is: False.","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4eeb339282cdbad1","name":"stdout","source":"4eeb339282cdbad1.txt","type":"text/plain","size":23}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_GenPrimesTestCase::0","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"critical"},{"name":"suite","value":"No kyu helper methods"},{"name":"parentSuite","value":"Helper methods"},{"name":"story","value":"Testing gen_primes util"},{"name":"feature","value":"Utils"},{"name":"tag","value":"PRIMES"},{"name":"tag","value":"PRIME NUMBERS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"UTILS"},{"name":"epic","value":"No kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"utils.primes.test_primes_generator"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source","url":"https://github.com/ikostan/codewars/tree/master/utils","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},"source":"ecd778da0cbd3ef.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ece5bd16ef8bbe52.json b/allure-report/data/test-cases/ece5bd16ef8bbe52.json new file mode 100644 index 00000000000..ce19eb0d8a2 --- /dev/null +++ b/allure-report/data/test-cases/ece5bd16ef8bbe52.json @@ -0,0 +1 @@ +{"uid":"ece5bd16ef8bbe52","name":"Testing to_table function","fullName":"kyu_6.array_to_html_table.test_list_to_html_table.ArrayToTableTestCase#test_array_to_table_function","historyId":"d7b951f3d87d7ec30599f08ae5567eb7","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing to_table with various test data\n :return:\n ","descriptionHtml":"Test that function takes three arguments (data, header, index) and returns a string containing HTML tags representing the table.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayToTableTestCase::0","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Array to HTML table"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_to_html_table.test_list_to_html_table"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3e7bb737d50c6ad2","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1}},{"uid":"a2d5dff34138108f","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0}},{"uid":"c409a300546c15a6","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"65c57bdf9fea8094","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e687a692c2c18f1b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1}},{"uid":"40c938f8f83f34f7","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0}},{"uid":"e6a3da330525d2f4","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"b78c37ec3b0f496f","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"ece5bd16ef8bbe52.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ed2f3c923fde4413.json b/allure-report/data/test-cases/ed2f3c923fde4413.json new file mode 100644 index 00000000000..c5f10883dd5 --- /dev/null +++ b/allure-report/data/test-cases/ed2f3c923fde4413.json @@ -0,0 +1 @@ +{"uid":"ed2f3c923fde4413","name":"a or b is negative","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_negative_numbers","historyId":"2889ca714f21625b11b311b780ead719","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"description":"\n a or b is negative\n :return:\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing century function\n ","descriptionHtml":"Given a year, the function should return the century it is in.
","status":"passed","steps":[{"name":"Enter test year (1705) and verify the output (18) vs expected (18)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1900) and verify the output (19) vs expected (19)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (1601) and verify the output (17) vs expected (17)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (2000) and verify the output (20) vs expected (20)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (356) and verify the output (4) vs expected (4)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test year (89) and verify the output (1) vs expected (1)","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"1bbf8f89249006b7","name":"stdout","source":"1bbf8f89249006b7.txt","type":"text/plain","size":410}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CenturyTestCase::0","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"story","value":"Century From Year"},{"name":"feature","value":"Math"},{"name":"suite","value":"Numbers"},{"name":"tag","value":"DATES/TIME"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.century_from_year.test_century"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5a3fe3dde1ce0e8ed6000097/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},"source":"ed7d0b3c14fd80c8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/edad07e580a5e4ff.json b/allure-report/data/test-cases/edad07e580a5e4ff.json new file mode 100644 index 00000000000..7a37b79d7ae --- /dev/null +++ b/allure-report/data/test-cases/edad07e580a5e4ff.json @@ -0,0 +1 @@ +{"uid":"edad07e580a5e4ff","name":"Testing 'save' function: positive","fullName":"kyu_7.fill_the_hard_disk_drive.test_save.SaveTestCase#test_save_positive","historyId":"b1ff2214ba100eb1c8bc62e73e12889e","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"description":"\n Testing 'save' function: positive\n\n The function should determine how many\n files of the copy queue you will be able\n to save into your Hard Disk Drive.\n :return:\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isogram and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string aba and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string moOse and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"3fc3f69bfdd6ff9f","name":"stdout","source":"3fc3f69bfdd6ff9f.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Isograms"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"ee3705e6f9b5a9fb.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ee5910cfe65a88ee.json b/allure-report/data/test-cases/ee5910cfe65a88ee.json new file mode 100644 index 00000000000..9ce2f1b7f24 --- /dev/null +++ b/allure-report/data/test-cases/ee5910cfe65a88ee.json @@ -0,0 +1 @@ +{"uid":"ee5910cfe65a88ee","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"description":"\n Test the function called that takes a string of parentheses,\n and determines if the order of the parentheses is valid.\n The function should return true if the string is valid,\n and false if it's invalid.\n\n Examples\n\n \"()\" => true\n \")(()))\" => false\n \"(\" => false\n \"(())((()())())\" => true\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"61278101606180d8","name":"stdout","source":"61278101606180d8.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Sum of Pairs"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"MEMOIZATION"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"eeeab72dd7b98f53.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef31dfc3c5e1eba5.json b/allure-report/data/test-cases/ef31dfc3c5e1eba5.json new file mode 100644 index 00000000000..4913a692685 --- /dev/null +++ b/allure-report/data/test-cases/ef31dfc3c5e1eba5.json @@ -0,0 +1 @@ +{"uid":"ef31dfc3c5e1eba5","name":"Testing calc_combinations_per_row function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_calc_combinations_per_row","historyId":"7fcdfe6224a9c1bf62e1c03968cb029e","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732428195775,"stop":1732428195775,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732428195789,"stop":1732428195789,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ef31dfc3c5e1eba5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ef78b96af32d8f44.json b/allure-report/data/test-cases/ef78b96af32d8f44.json new file mode 100644 index 00000000000..4b7bfa4b583 --- /dev/null +++ b/allure-report/data/test-cases/ef78b96af32d8f44.json @@ -0,0 +1 @@ +{"uid":"ef78b96af32d8f44","name":"Testing permute_a_palindrome (negative)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_negative","historyId":"7090b58c62fab362ad673c85c67765af","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"description":"\n Negative testing permute_a_palindrome function\n :return:\n ","descriptionHtml":"- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
- If the string already ends with a number, the number should be incremented by 1.
- If the string does not end with a number. the number 1 should be appended to the new string.
Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing array_diff function\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1732764219245,"stop":1732764219245,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Array.diff"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Fundamentals"},{"name":"epic","value":"6 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"f06c10d847061aa8.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f0823718dfb5375c.json b/allure-report/data/test-cases/f0823718dfb5375c.json new file mode 100644 index 00000000000..ec7251578d8 --- /dev/null +++ b/allure-report/data/test-cases/f0823718dfb5375c.json @@ -0,0 +1 @@ +{"uid":"f0823718dfb5375c","name":"Testing Potion class","fullName":"kyu_6.potion_class_101.test_potion.PotionTestCase#test_potion","historyId":"4d7a6b080aa8dcf06d68a1f957a8e465","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Test Potion class that mix between 2 RGB colors.
","status":"passed","steps":[{"name":"Mix between RGB colors and verify the output","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_PotionTestCase::0","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"suite","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"story","value":"Potion Class 101"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.potion_class_101.test_potion"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5981ff1daf72e8747d000091/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"f0823718dfb5375c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f09191f837671677.json b/allure-report/data/test-cases/f09191f837671677.json deleted file mode 100644 index 8a36bf1a73b..00000000000 --- a/allure-report/data/test-cases/f09191f837671677.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f09191f837671677","name":"Testing 'solution' function","fullName":"kyu_7.pull_your_words_together_man.test_sentencify.SentencifyTestCase#test_sentencify","historyId":"5821e6355bce2a3bf46d4ce3e55de034","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"description":"\n Testing 'sentencify' function.\n\n The function should:\n\n 1. Capitalise the first letter of the first word.\n 2. Add a period (.) to the end of the sentence.\n 3. Join the words into a complete string, with spaces.\n 4. Do no other manipulation on the words.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Test a function that should take a shuffled list of unique numbers\n from 1 to n with one element missing (which can be any\n number including n). Should return this missing number.\n\n :return:\n ","descriptionHtml":"Test a function that should take a shuffled list of unique numbers from 1 to n with one element missing (which can be any number including n). The function should return the missing number.
","status":"passed","steps":[{"name":"Enter a list and verify the expected output: 1 vs actual result: 1","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 2 vs actual result: 2","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 3 vs actual result: 3","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 4 vs actual result: 4","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a list and verify the expected output: 36 vs actual result: 36","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"95ff64e2c1a83a10","name":"stdout","source":"95ff64e2c1a83a10.txt","type":"text/plain","size":2621}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FindMissingNumberTestCase::0","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PERFORMANCE"},{"name":"story","value":"Number Zoo Patrol"},{"name":"tag","value":"NUMBERS"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.number_zoo_patrol.test_find_missing_number"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5276c18121e20900c0000235/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"501c2967d3373bac","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0}}],"categories":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},"source":"f0e71551541527fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f1a12ce167e16758.json b/allure-report/data/test-cases/f1a12ce167e16758.json new file mode 100644 index 00000000000..faadeb7f174 --- /dev/null +++ b/allure-report/data/test-cases/f1a12ce167e16758.json @@ -0,0 +1 @@ +{"uid":"f1a12ce167e16758","name":"String alphabet chars and spaces","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_space","historyId":"11acd8f3802b43ce2264b83840d495b4","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"description":"\n Repeating char is a space\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing sum_for_list function\n :return:\n ","descriptionHtml":"Verify that one given an array of positive or negative integers I= [i1,..,in] the function produces a sorted array P of the form [[p, sum of all ij of I for which p is a prime factor (p positive) of ij]...]
","status":"passed","steps":[{"name":"Enter test list ([12, 15]) and verify the output ([[2, 12], [3, 27], [5, 15]]) vs expected ([[2, 12], [3, 27], [5, 15]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, 21, 24, 30, 45]) and verify the output ([[2, 54], [3, 135], [5, 90], [7, 21]]) vs expected ([[2, 54], [3, 135], [5, 90], [7, 21]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([107, 158, 204, 100, 118, 123, 126, 110, 116, 100]) and verify the output ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]]) vs expected ([[2, 1032], [3, 453], [5, 310], [7, 126], [11, 110], [17, 204], [29, 116], [41, 123], [59, 118], [79, 158], [107, 107]])","time":{"start":1724733472452,"stop":1724733472452,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([-29804, -4209, -28265, -72769, -31744]) and verify the output ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]]) vs expected ([[2, -61548], [3, -4209], [5, -28265], [23, -4209], [31, -31744], [53, -72769], [61, -4209], [1373, -72769], [5653, -28265], [7451, -29804]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([15, -36, -133, -61, -54, 78, -126, -113, -106, -158]) and verify the output ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]]) vs expected ([[2, -402], [3, -123], [5, 15], [7, -259], [13, 78], [19, -133], [53, -106], [61, -61], [79, -158], [113, -113]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([154, -150, -196, -164, -57, 133, -110, -126, -191, -171, 131, -55, -85, -37, -113]) and verify the output ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]]) vs expected ([[2, -592], [3, -504], [5, -400], [7, -35], [11, -11], [17, -85], [19, -95], [37, -37], [41, -164], [113, -113], [131, 131], [191, -191]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test list ([12, -138, -175, -64, -153, 11, -11, -126, -67, -30, 153, -72, -102]) and verify the output ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]]) vs expected ([[2, -520], [3, -456], [5, -205], [7, -301], [11, 0], [17, -102], [23, -138], [67, -67]])","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"2fdd029d73a8807a","name":"stdout","source":"2fdd029d73a8807a.txt","type":"text/plain","size":1579}],"parameters":[],"stepsCount":7,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumForListTestCase::0","time":{"start":1724733472499,"stop":1724733472499,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Sum by Factors"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.sum_by_factors.test_sum_for_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d496788776e49e6b00052f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},"source":"f2960499936046d9.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f2a1a9d494a0859.json b/allure-report/data/test-cases/f2a1a9d494a0859.json new file mode 100644 index 00000000000..84d1b702372 --- /dev/null +++ b/allure-report/data/test-cases/f2a1a9d494a0859.json @@ -0,0 +1 @@ +{"uid":"f2a1a9d494a0859","name":"Testing top_3_words function","fullName":"kyu_4.most_frequently_used_words.test_top_3_words.Top3WordsTestCase#test_top_3_words","historyId":"749ee6e9278a75fb77637153b8003619","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test top_3_words function\n ","descriptionHtml":"Given a string of text (possibly with punctuation and line-breaks), the function should return an array of the top-3 most occurring words, in descending order of the number of occurrences.
","status":"passed","steps":[{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string and verify the output","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_Top3WordsTestCase::0","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Most frequently used words in a text"},{"name":"tag","value":"FILTERING"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"RANKING"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.most_frequently_used_words.test_top_3_words"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/51e056fe544cf36c410000fb","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"81d67983376326e","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0}},{"uid":"13b14c699e0075d9","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1}},{"uid":"7b5c67e400b6b0a0","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"522dabffb376b9c8","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"450fbb27e2067be4","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0}},{"uid":"f85ab0d3a8429db7","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1}},{"uid":"c7c7f21adbc73706","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"647dfe698e2a6fdb","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},"source":"f2a1a9d494a0859.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f2bd505717a279f1.json b/allure-report/data/test-cases/f2bd505717a279f1.json new file mode 100644 index 00000000000..3a82454f8c0 --- /dev/null +++ b/allure-report/data/test-cases/f2bd505717a279f1.json @@ -0,0 +1 @@ +{"uid":"f2bd505717a279f1","name":"Testing likes function","fullName":"kyu_6.who_likes_it.test_likes_function.LikesTestCase#test_likes_function","historyId":"79c7b93ec42d8a40bc531e50834720ef","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing likes function with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1732428195708,"stop":1732428195708,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Who likes it?"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FORMATTING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"f2bd505717a279f1.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f2e80dca05a524c5.json b/allure-report/data/test-cases/f2e80dca05a524c5.json new file mode 100644 index 00000000000..838ef1530d1 --- /dev/null +++ b/allure-report/data/test-cases/f2e80dca05a524c5.json @@ -0,0 +1 @@ +{"uid":"f2e80dca05a524c5","name":"Testing string_transformer function","fullName":"kyu_6.string_transformer.test_string_transformer.StringTransformerTestCase#test_string_transformer","historyId":"05d3d7ae3b11057af82404f162aa30df","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"description":"\n Testing string_transformer function\n with multiple test data.\n\n Given a string, return a new string that has\n transformed based on the input:\n\n 1. Change case of every character, ie. lower\n case to upper case, upper case to lower case.\n\n 2. Reverse the order of words from the input.\n\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase","time":{"start":1732428194205,"stop":1732428194205,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Test a function dir_reduc which will take an array of\n strings and returns an array of strings with the needless\n directions removed (W<->E or S<->N side by side).\n\n The Haskell version takes a list of directions with\n data Direction = North | East | West | South.\n\n The Clojure version returns nil when the path is\n reduced to nothing.\n\n The Rust version takes a slice of enum Direction\n {NORTH, SOUTH, EAST, WEST}.\n :return:\n ","descriptionHtml":"Test a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
","status":"passed","steps":[{"name":"Enter test data (['NORTH', 'SOUTH', 'SOUTH', 'EAST', 'WEST', 'NORTH', 'WEST']) and verify the output (['WEST']) vs expected (['WEST'])","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'WEST', 'SOUTH', 'EAST']) and verify the output (['NORTH', 'WEST', 'SOUTH', 'EAST']) vs expected (['NORTH', 'WEST', 'SOUTH', 'EAST'])","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['NORTH', 'EAST', 'NORTH', 'EAST', 'WEST', 'WEST', 'EAST', 'EAST', 'WEST', 'SOUTH']) and verify the output (['NORTH', 'EAST']) vs expected (['NORTH', 'EAST'])","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['EAST', 'NORTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'NORTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'SOUTH', 'NORTH', 'NORTH', 'SOUTH', 'WEST', 'NORTH', 'EAST', 'WEST', 'WEST', 'WEST', 'EAST', 'SOUTH', 'SOUTH']) and verify the output (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH']) vs expected (['EAST', 'SOUTH', 'SOUTH', 'SOUTH', 'SOUTH', 'EAST', 'SOUTH', 'WEST', 'NORTH', 'WEST', 'SOUTH', 'SOUTH'])","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['WEST', 'NORTH', 'EAST', 'EAST', 'EAST', 'EAST', 'WEST', 'WEST', 'WEST', 'WEST', 'NORTH', 'NORTH', 'SOUTH', 'EAST']) and verify the output (['WEST', 'NORTH', 'NORTH', 'EAST']) vs expected (['WEST', 'NORTH', 'NORTH', 'EAST'])","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DirectionsReductionTestCase::0","time":{"start":1732428194209,"stop":1732428194209,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"5 kyu"},{"name":"story","value":"Directions Reduction"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.directions_reduction.test_directions_reduction"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/550f22f4d758534c1100025a","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS"]},"source":"f30c1ecba64a2387.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f3421cdd7cb94a40.json b/allure-report/data/test-cases/f3421cdd7cb94a40.json deleted file mode 100644 index 9fa36047945..00000000000 --- a/allure-report/data/test-cases/f3421cdd7cb94a40.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f3421cdd7cb94a40","name":"Testing done_or_not function","fullName":"kyu_5.sum_of_pairs.test_sum_pairs.SumPairsTestCase#test_sum_pairs","historyId":"9fee131d815f560a33f2993b7a094489","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"6f22d94f06ac3a09","name":"stdout","source":"6f22d94f06ac3a09.txt","type":"text/plain","size":931}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"MEMOIZATION"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Sum of Pairs"},{"name":"feature","value":"Memoization"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"f3421cdd7cb94a40.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f39847014d01db85.json b/allure-report/data/test-cases/f39847014d01db85.json new file mode 100644 index 00000000000..ae221af3886 --- /dev/null +++ b/allure-report/data/test-cases/f39847014d01db85.json @@ -0,0 +1 @@ +{"uid":"f39847014d01db85","name":"Testing list_squared function","fullName":"kyu_5.integers_recreation_one.test_list_squared.ListSquaredTestCase#test_flatten","historyId":"59de8dec543be1db3938897a3c9169de","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase","time":{"start":1733030099021,"stop":1733030099021,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing list_squared function\n\n :return:\n ","descriptionHtml":"Given two integers m, n (1 <= m <= n) we want to find all integers between m and n whose sum of squared divisors is itself a square.
","status":"passed","steps":[{"name":"Enter test data and verify the output...","time":{"start":1733030099021,"stop":1733030099021,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1733030099021,"stop":1733030099021,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1733030099021,"stop":1733030099021,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1733030099021,"stop":1733030099083,"duration":62},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1733030099083,"stop":1733030099130,"duration":47},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data and verify the output...","time":{"start":1733030099130,"stop":1733030099161,"duration":31},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ListSquaredTestCase::0","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Integers: Recreation One"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"OPTIMIZATION"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Optimization"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.integers_recreation_one.test_list_squared"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/55aa075506463dac6600010d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"3376cc456abfb7e3","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145}},{"uid":"39dc8cd28592a068","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132}},{"uid":"c77cd6e80c5f42f2","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"b01a24c8d7b81de4","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b7dd8f8438e567a9","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145}},{"uid":"7560669431ea4aa8","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132}},{"uid":"7fd5632b0213855d","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"60f5877935ced5c5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}}]},"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},"source":"f39847014d01db85.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f39f65fd61fb96b1.json b/allure-report/data/test-cases/f39f65fd61fb96b1.json deleted file mode 100644 index c66f56ee01d..00000000000 --- a/allure-report/data/test-cases/f39f65fd61fb96b1.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f39f65fd61fb96b1","name":"Testing valid_parentheses function","fullName":"kyu_5.valid_parentheses.test_valid_parentheses.ValidParenthesesTestCase#test_valid_parentheses","historyId":"92164414ad94bf1f5638230345fa606d","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"description":"\n Test the function called that takes a string of parentheses,\n and determines if the order of the parentheses is valid.\n The function should return true if the string is valid,\n and false if it's invalid.\n\n Examples\n\n \"()\" => true\n \")(()))\" => false\n \"(\" => false\n \"(())((()())())\" => true\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 36, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"3 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"8316509a5b8b5aee","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"f4c5ff18f0370583.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/f4e7ccb7c6ccb848.json b/allure-report/data/test-cases/f4e7ccb7c6ccb848.json
new file mode 100644
index 00000000000..427b902a74e
--- /dev/null
+++ b/allure-report/data/test-cases/f4e7ccb7c6ccb848.json
@@ -0,0 +1 @@
+{"uid":"f4e7ccb7c6ccb848","name":"Testing men_from_boys function","fullName":"kyu_7.sort_out_the_men_from_boys.test_men_from_boys.MenFromBoysTestCase#test_men_from_boys","historyId":"94e7f25439d88c0d2dae964ef4a033cd","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"description":"\n Testing men_from_boys function with\n various test inputs\n\n Scenario\n Now that the competition gets tough it\n will Sort out the men from the boys .\n\n Men are the Even numbers and Boys are\n the odd !alt !alt\n\n Task\n Given an array/list [] of n integers ,\n Separate The even numbers from the odds ,\n or Separate the men from the boys !alt !alt\n\n Notes\n Return an array/list where Even numbers\n come first then odds.\n Since , Men are stronger than Boys ,\n Then Even numbers in ascending order\n While odds in descending.\n :return:\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing is_solved function\n\n The function should return whether the\n board's current state is solved.\n\n We want our function to return:\n\n -1 if the board is not yet finished (there are empty spots),\n 1 if \"X\" won,\n 2 if \"O\" won,\n 0 if it's a cat's game (i.e. a draw).\n ","descriptionHtml":"The function should return whether the board's current state is solved.
","status":"passed","steps":[{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter Tic-Tac-Toe board and verify the output.","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsSolvedTestCase::0","time":{"start":1732428194529,"stop":1732428194529,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAY"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"story","value":"Tic-Tac-Toe Checker"},{"name":"suite","value":"Algorithms"},{"name":"feature","value":"Lists"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.tic_tac_toe_checker.test_checker"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/525caa5c1bf619d28c000335","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ARRAY","ALGORITHMS"]},"source":"f50250db1c4c6a23.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5045863352b0844.json b/allure-report/data/test-cases/f5045863352b0844.json new file mode 100644 index 00000000000..93175bf9463 --- /dev/null +++ b/allure-report/data/test-cases/f5045863352b0844.json @@ -0,0 +1 @@ +{"uid":"f5045863352b0844","name":"test_line_negative","fullName":"kyu_3.line_safari_is_that_a_line.test_line_negative.LineNegativeTestCase#test_line_negative","historyId":"e5c7abe0fcf3b79049d906f50808feb6","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"description":"\n Testing Line Safari functionality\n Negative test cases\n ","descriptionHtml":" Testing Line Safari functionality\n Negative test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_negative.py', 37, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"feature","value":"String"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"STRINGS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12720-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_negative"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"f5045863352b0844.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/f51b45f6ebc18bdf.json b/allure-report/data/test-cases/f51b45f6ebc18bdf.json
new file mode 100644
index 00000000000..66a6d329c5e
--- /dev/null
+++ b/allure-report/data/test-cases/f51b45f6ebc18bdf.json
@@ -0,0 +1 @@
+{"uid":"f51b45f6ebc18bdf","name":"Testing Sudoku class","fullName":"kyu_4.validate_sudoku_with_size.test_sudoku.SudokuTestCase#test_sudoku_class","historyId":"0704c8beeeff66cfb456c26853e2b7c4","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing Sudoku class\n\n Given a Sudoku data structure with size NxN, N > 0 and âN == integer,\n assert a method that validates if it has been filled out correctly.\n :return:\n ","descriptionHtml":"Testing Sudoku class
Given a Sudoku data structure with size NxN, N > 0 and âN == integer, assert a method that validates if it has been filled out correctly.
","status":"passed","steps":[{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a Sudoku solution and verify if it a valid one.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Assert expected result vs actual.","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":30,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SudokuTestCase::0","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Validate Sudoku with size `NxN`"},{"name":"tag","value":"PUZZLES"},{"name":"tag","value":"VALIDATION"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Control Flow"},{"name":"tag","value":"GAMES"},{"name":"tag","value":"ARRAYS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.validate_sudoku_with_size.test_sudoku"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/540afbe2dc9f615d5e000425","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"b4318b89966fb16","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0}},{"uid":"73191ac2ec23a302","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0}},{"uid":"ea9306ba22046ff3","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"a2c0d72771fc18f1","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a908975bd67b2eca","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0}},{"uid":"15f47b991f284575","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0}},{"uid":"7f90afc62f8400f4","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"a921030da8c9a520","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}}]},"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},"source":"f51b45f6ebc18bdf.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f52796969ad8c6a8.json b/allure-report/data/test-cases/f52796969ad8c6a8.json new file mode 100644 index 00000000000..32007444ea9 --- /dev/null +++ b/allure-report/data/test-cases/f52796969ad8c6a8.json @@ -0,0 +1 @@ +{"uid":"f52796969ad8c6a8","name":"Testing the 'valid_braces' function","fullName":"kyu_6.valid_braces.test_valid_braces.ValidBracesTestCase#test_valid_braces","historyId":"6c14cedc5a513765002a31220c677a3f","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"description":"\n Testing the 'valid_braces' function\n with various test data\n :return:\n ","descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"Test that function subtracts one list from anotherand returns the result. It should remove all values from list a, which are present in list b.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"53524752e4f404ea","name":"stdout","source":"53524752e4f404ea.txt","type":"text/plain","size":502}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_ArrayDiffTestCase::0","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Array.diff"},{"name":"feature","value":"Lists"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.array_diff.test_array_diff"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/523f5d21c841566fde000009/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"960c8899017a5d3c","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0}}],"categories":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},"source":"f52a489cb0add672.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f530c22a860ae687.json b/allure-report/data/test-cases/f530c22a860ae687.json new file mode 100644 index 00000000000..11f35dcbece --- /dev/null +++ b/allure-report/data/test-cases/f530c22a860ae687.json @@ -0,0 +1 @@ +{"uid":"f530c22a860ae687","name":"Non consecutive number should be returned","fullName":"kyu_8.find_the_first_non_consecutive_number.test_first_non_consecutive.FirstNonConsecutiveTestCase#test_first_non_consecutive_positive","historyId":"13df60cbdff5ee076adcd6328cc69159","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"description":"\n If we have an array [1,2,3,4,6,7,8] then 1 then 2\n then 3 then 4 are all consecutive but 6 is not,\n so that's the first non-consecutive number.\n :return:\n ","descriptionHtml":"Should return False for invalid parentheses
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n 0 is a square number\n :return:\n ","descriptionHtml":"Should return False for invalid parentheses
","status":"passed","steps":[{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test string (')(', '()()(', '((())', '())(()', ')()', ')')and verify that the function returns False.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ValidParenthesesTestCase::0","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Valid Parentheses"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"STRINGS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"PARSING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.valid_parentheses.test_valid_parentheses"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/6411b91a5e71b915d237332d","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},"source":"f55783c4fa90131e.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f56ae5fa4f278c43.json b/allure-report/data/test-cases/f56ae5fa4f278c43.json new file mode 100644 index 00000000000..b639f12d39a --- /dev/null +++ b/allure-report/data/test-cases/f56ae5fa4f278c43.json @@ -0,0 +1 @@ +{"uid":"f56ae5fa4f278c43","name":"Testing 'DefaultList' class: extend","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_extend","historyId":"14f36f48218b5a6c45bb6c1fdb646e2d","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'DefaultList' class: extend\n :return:\n ","descriptionHtml":"Testing extend method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Extend the list list","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Get list item by index and verify the results","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"CLASSES"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"Classes"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"e8a2735e9df336cb","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2}},{"uid":"353219a042e3862c","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2}},{"uid":"acad0a25b607c9fe","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"dbd543834c91eda6","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c244be500ebdf146","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2}},{"uid":"5fabad9204d0747c","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2}},{"uid":"826a0963540c6e75","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"4359475f5ec554bd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},"source":"f56ae5fa4f278c43.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5898a8468d0cd4.json b/allure-report/data/test-cases/f5898a8468d0cd4.json new file mode 100644 index 00000000000..daa86f6e1dd --- /dev/null +++ b/allure-report/data/test-cases/f5898a8468d0cd4.json @@ -0,0 +1 @@ +{"uid":"f5898a8468d0cd4","name":"String with mixed type of chars","fullName":"kyu_6.first_character_that_repeats.test_first_character_that_repeats.FirstDupTestCase#test_first_dup_mixed","historyId":"befc81f16d3ea9a4d57ecd3fed78faff","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"description":"\n Test string with mixed type of chars.\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing shark function -> negative\n :return:\n ","descriptionHtml":"You are given 5 variables:
sharkDistance = distance the shark needs to cover to eat you in metres,
sharkSpeed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
youSpeed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"a1830f831e47cf3a","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0}}],"categories":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"f5a3f0d4d035c3a4.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f5b1db39220bbcf9.json b/allure-report/data/test-cases/f5b1db39220bbcf9.json deleted file mode 100644 index 74cf133a00d..00000000000 --- a/allure-report/data/test-cases/f5b1db39220bbcf9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f5b1db39220bbcf9","name":"Testing permute_a_palindrome (negative)","fullName":"kyu_6.permute_a_palindrome.test_permute_a_palindrome.PermutePalindromeTestCase#test_permute_a_palindrome_negative","historyId":"7090b58c62fab362ad673c85c67765af","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"descriptionHtml":" In this kata you have to correctly return who\n is the "survivor", ie: the last element of a\n Josephus permutation.\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\josephus_survivor\\\\test_josephus_survivor.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"NUMBERS"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"LISTS"},{"name":"story","value":"Josephus Survivor"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Algorithms"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.josephus_survivor.test_josephus_survivor"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/555624b601231dc7a400017a/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"f7d62cc3e2943023.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/f7d85b85e5647233.json b/allure-report/data/test-cases/f7d85b85e5647233.json
new file mode 100644
index 00000000000..78c181624e0
--- /dev/null
+++ b/allure-report/data/test-cases/f7d85b85e5647233.json
@@ -0,0 +1 @@
+{"uid":"f7d85b85e5647233","name":"Testing tickets function","fullName":"kyu_6.vasya_clerk.test_tickets.TicketsTestCase#test_tickets","historyId":"bb3964d396ef802dceada9777cff8e45","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"description":"\n Testing tickets function with various test inputs.\n\n The new \"Avengers\" movie has just been released!\n There are a lot of people at the cinema box office\n standing in a huge line. Each of them has a single\n 100, 50 or 25 dollar bill. An \"Avengers\" ticket\n costs 25 dollars.\n\n Vasya is currently working as a clerk.\n He wants to sell a ticket to every single person\n in this line.\n\n Can Vasya sell a ticket to every person and give change\n if he initially has no money and sells the tickets strictly\n in the order people queue?\n\n The function should return YES, if Vasya can sell\n a ticket to every person and give change with the\n bills he has at hand at that moment. Otherwise return NO.\n :return:\n ","descriptionHtml":" Basic test case\n :return:\n
\n","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Basic test case\n :return:\n ","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"e7476696af18d9ef","name":"stdout","source":"e7476696af18d9ef.txt","type":"text/plain","size":222}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_TriangleTestCase::0","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"feature","value":"Lists"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"Algorithms"},{"name":"tag","value":"Strings"},{"name":"tag","value":"Logic"},{"name":"story","value":"Coloured Triangles"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Data Structures"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.coloured_triangles.test_triangle"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"tags":["Algorithms","Logic","Strings"]},"source":"f80f9bf6821c7c25.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/f8378587d25efdca.json b/allure-report/data/test-cases/f8378587d25efdca.json
new file mode 100644
index 00000000000..f19b856b8df
--- /dev/null
+++ b/allure-report/data/test-cases/f8378587d25efdca.json
@@ -0,0 +1 @@
+{"uid":"f8378587d25efdca","name":"Testing share_price function","fullName":"kyu_7.share_prices.test_share_price.SharePriceTestCase#test_share_price","historyId":"884fcf3671ca321076723a238ddb92c0","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"description":"\n Testing share_price function\n with multiple test inputs\n :return:\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'mix' function\n\n Given two strings s1 and s2, the 'mix' function\n should visualize how different the two strings are.\n ","descriptionHtml":"Testing pmix function
Given two strings s1 and s2, the 'mix' function should visualize how different the two strings are. We will only take into account the lowercase letters (a to z). First let us count the frequency of each lowercase letters in s1 and s2.
","status":"passed","steps":[{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter s1 and s2 strings and assert the output vs expected result","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_MixTestCase::0","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"parentSuite","value":"Competent"},{"name":"story","value":"Strings Mix"},{"name":"feature","value":"String"},{"name":"epic","value":"4 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.strings_mix.test_mix"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5629db57620258aa9d000014","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"196d20a77b3bd50d","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0}},{"uid":"76a91c6ac0b40085","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2}},{"uid":"9c58cd2f052b55a6","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"aea42439e3c082b4","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3b9e344534b3c5db","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0}},{"uid":"2cc2dcb2d1d8eb43","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2}},{"uid":"2460353038ce1955","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"afdaa298aab7eba8","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}}]},"tags":["STRINGS","FUNDAMENTALS"]},"source":"f87e2580dd045df5.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/f8abc15630ec06cb.json b/allure-report/data/test-cases/f8abc15630ec06cb.json deleted file mode 100644 index 819362b2c0b..00000000000 --- a/allure-report/data/test-cases/f8abc15630ec06cb.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"f8abc15630ec06cb","name":"Testing swap_values function","fullName":"kyu_8.swap_values.test_swap_values.SwapValuesTestCase#test_swap_values","historyId":"3546afa49f7d1872d60856dcd3614357","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"description":"\n Testing swap_values function\n ","descriptionHtml":" Testing permutations function\n\n Test that permutations function creates all\n permutations of an input string and\n remove duplicates, if present. This means, you\n have to shuffle all letters from the input in all\n possible orders.\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_4\\\\permutations\\\\test_permutations.py', 31, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"story","value":"Permutations"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"PERMUTATIONS"},{"name":"parentSuite","value":"Competent"},{"name":"feature","value":"String"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.permutations.test_permutations"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5254ca2719453dcc0b00027d/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"f9dcb27f6a2f5731.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/f9e3772c62ee9c71.json b/allure-report/data/test-cases/f9e3772c62ee9c71.json
new file mode 100644
index 00000000000..99773bb00d2
--- /dev/null
+++ b/allure-report/data/test-cases/f9e3772c62ee9c71.json
@@ -0,0 +1 @@
+{"uid":"f9e3772c62ee9c71","name":"'fix_the_meerkat function function verification","fullName":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat.FixTheMeerkatTestCase#test_fix_the_meerkat","historyId":"11e49f45979df22d4f121435101e70bc","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"Save the animals by switching them back. You will be given an array which will have three values (tail, body, head). It is your job to re-arrange the array so that the animal is the right way round (head, body, tail).
","status":"passed","steps":[{"name":"Enter test data: ['tail', 'body', 'head'] and assert actual result: ['head', 'body', 'tail'] vs expected: ['head', 'body', 'tail']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['tails', 'body', 'heads'] and assert actual result: ['heads', 'body', 'tails'] vs expected: ['heads', 'body', 'tails']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['bottom', 'middle', 'top'] and assert actual result: ['top', 'middle', 'bottom'] vs expected: ['top', 'middle', 'bottom']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['lower legs', 'torso', 'upper legs'] and assert actual result: ['upper legs', 'torso', 'lower legs'] vs expected: ['upper legs', 'torso', 'lower legs']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data: ['ground', 'rainbow', 'sky'] and assert actual result: ['sky', 'rainbow', 'ground'] vs expected: ['sky', 'rainbow', 'ground']","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"4dd82faaba573e68","name":"stdout","source":"4dd82faaba573e68.txt","type":"text/plain","size":611}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_FixTheMeerkatTestCase::0","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"DATA STRUCTURES"},{"name":"tag","value":"ARRAYS"},{"name":"epic","value":"8 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Lists"},{"name":"tag","value":"LISTS"},{"name":"parentSuite","value":"Beginner"},{"name":"suite","value":"Data Structures"},{"name":"story","value":"My head is at the wrong end!"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.my_head_is_at_the_wrong_end.test_fix_the_meerkat"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56f699cd9400f5b7d8000b55/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},"source":"f9e3772c62ee9c71.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa56d75fd8c33c3c.json b/allure-report/data/test-cases/fa56d75fd8c33c3c.json deleted file mode 100644 index edb6ef2cd7d..00000000000 --- a/allure-report/data/test-cases/fa56d75fd8c33c3c.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fa56d75fd8c33c3c","name":"Testing spiralize function","fullName":"kyu_3.make_spiral.test_spiralize.SpiralizeTestCase#test_spiralize","historyId":"3249b5db727c0aadecf3cb62b280e675","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing spiralize function\n ","descriptionHtml":"The function should create a NxN spiral with a given size.
","status":"passed","steps":[{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter spiral list size and verify the result","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"79af870721a1c097","name":"stdout","source":"79af870721a1c097.txt","type":"text/plain","size":1865}],"parameters":[],"stepsCount":5,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_SpiralizeTestCase::0","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"critical"},{"name":"feature","value":"Lists"},{"name":"tag","value":"CONTROL FLOW"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"ARRAYS"},{"name":"story","value":"Make a spiral"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Competent"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"3 kyu"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.make_spiral.test_spiralize"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/534e01fbbb17187c7e0000c6/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},"source":"fa56d75fd8c33c3c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa6ca2a58e326e7c.json b/allure-report/data/test-cases/fa6ca2a58e326e7c.json new file mode 100644 index 00000000000..b879637b329 --- /dev/null +++ b/allure-report/data/test-cases/fa6ca2a58e326e7c.json @@ -0,0 +1 @@ +{"uid":"fa6ca2a58e326e7c","name":"Testing shark function (positive)","fullName":"kyu_8.holiday_vi_shark_pontoon.test_shark.SharkTestCase#test_shark_alive_2","historyId":"72a2d75b45f09e520765f369cfc2bc8f","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1732764221042,"stop":1732764221042,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"suite","value":"Math"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fa6ca2a58e326e7c.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fa7a68ec7ece512f.json b/allure-report/data/test-cases/fa7a68ec7ece512f.json new file mode 100644 index 00000000000..3848e1878ec --- /dev/null +++ b/allure-report/data/test-cases/fa7a68ec7ece512f.json @@ -0,0 +1 @@ +{"uid":"fa7a68ec7ece512f","name":"Testing men_from_boys function","fullName":"kyu_7.sort_out_the_men_from_boys.test_men_from_boys.MenFromBoysTestCase#test_men_from_boys","historyId":"94e7f25439d88c0d2dae964ef4a033cd","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"description":"\n Testing men_from_boys function with\n various test inputs\n\n Scenario\n Now that the competition gets tough it\n will Sort out the men from the boys .\n\n Men are the Even numbers and Boys are\n the odd !alt !alt\n\n Task\n Given an array/list [] of n integers ,\n Separate The even numbers from the odds ,\n or Separate the men from the boys !alt !alt\n\n Notes\n Return an array/list where Even numbers\n come first then odds.\n Since , Men are stronger than Boys ,\n Then Even numbers in ascending order\n While odds in descending.\n :return:\n ","descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"160b559167718fe9","name":"stdout","source":"160b559167718fe9.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Help the bookseller !"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Algorithms"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"fa8c3ecdf2af6d24.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb032b53923bc0e9.json b/allure-report/data/test-cases/fb032b53923bc0e9.json deleted file mode 100644 index 5c8e224d240..00000000000 --- a/allure-report/data/test-cases/fb032b53923bc0e9.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fb032b53923bc0e9","name":"a an b are positive numbers","fullName":"kyu_7.beginner_series_sum_of_numbers.test_sum_of_numbers.SumOfNumbersTestCase#test_get_sum_positive_numbers","historyId":"d52901f553e103c17fa73d8148d8b604","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"description":"\n a an b are positive numbers\n :return:\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase","time":{"start":1732764219184,"stop":1732764219184,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing 'sum_pairs' function\n\n Given a list of integers and a single sum value,\n the function should return the first two values\n (parse from the left please) in order of appearance\n that add up to form the sum.\n ","descriptionHtml":"Given a list of integers and a single sum value, the function should return the first two values (parse from the left please) in order of appearance that add up to form the sum.
","status":"passed","steps":[{"name":"Enter a test list and verify the output.","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SumPairsTestCase::0","time":{"start":1732764219187,"stop":1732764219187,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"story","value":"Sum of Pairs"},{"name":"tag","value":"DESIGN PATTERNS"},{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"DESIGN PRINCIPLES"},{"name":"feature","value":"Memoization"},{"name":"tag","value":"MEMOIZATION"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"PARSING ALGORITHMS"},{"name":"suite","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.sum_of_pairs.test_sum_pairs"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54d81488b981293527000c8f","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},"source":"fb3c794e959e544.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb3ce43e36479ba0.json b/allure-report/data/test-cases/fb3ce43e36479ba0.json deleted file mode 100644 index d7d2d9c5a89..00000000000 --- a/allure-report/data/test-cases/fb3ce43e36479ba0.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fb3ce43e36479ba0","name":"Testing easy_line function","fullName":"kyu_7.easy_line.test_easyline.EasyLineTestCase#test_easy_line","historyId":"18d36227a2f56662bc03f08e05241ec1","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":1,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"descriptionHtml":"The function should take n (with: n>= 0) as parameter and must return the sum of the squares of the binomial coefficients on line n.
","status":"passed","steps":[{"name":"Enter line number (0) and assert expected (1) vs actual (1).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (1) and assert expected (2) vs actual (2).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (4) and assert expected (70) vs actual (70).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (7) and assert expected (3432) vs actual (3432).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (13) and assert expected (10400600) vs actual (10400600).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (17) and assert expected (2333606220) vs actual (2333606220).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (19) and assert expected (35345263800) vs actual (35345263800).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (22) and assert expected (2104098963720) vs actual (2104098963720).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (24) and assert expected (32247603683100) vs actual (32247603683100).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter line number (50) and assert expected (100891344545564193334812497256) vs actual (100891344545564193334812497256).","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"25c4d55846b6e292","name":"stdout","source":"25c4d55846b6e292.txt","type":"text/plain","size":554}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"epic","value":"7 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Easy Line"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"Math"},{"name":"suite","value":"Fundamentals"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632/train/python","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"7fad3735c185529a","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0}}],"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fb3ce43e36479ba0.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fb5c1665d86892a0.json b/allure-report/data/test-cases/fb5c1665d86892a0.json new file mode 100644 index 00000000000..a41d474a672 --- /dev/null +++ b/allure-report/data/test-cases/fb5c1665d86892a0.json @@ -0,0 +1 @@ +{"uid":"fb5c1665d86892a0","name":"Verify that greet function returns the proper message","fullName":"kyu_8.grasshopper_personalized_message.test_grasshopper_personalized_message.GreetTestCase#test_greet","historyId":"c07c7cb9e4aa2b6b273c9327f48ca674","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"description":"\n Use conditionals to to verify that greet\n function returns the proper message.\n :return:\n ","descriptionHtml":" Testing Line Safari functionality\n Positive test cases\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_3\\\\line_safari_is_that_a_line\\\\test_line_positive.py', 35, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Competent"},{"name":"epic","value":"3 kyu"},{"name":"suite","value":"Algorithms"},{"name":"story","value":"Line Safari - Is that a line?"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_3.line_safari_is_that_a_line.test_line_positive"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"453e6c562bbae4f7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218562,"stop":1732764218562,"duration":0}},{"uid":"51076f5a3e3475ad","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193918,"stop":1732428193918,"duration":0}},{"uid":"54d8fcc9aa407768","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"bc0d03d768c84e9a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724733472312,"stop":1724733472312,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"32a39f3c0fa23567","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218562,"stop":1732764218562,"duration":0}},{"uid":"b7243d74fc99fb8b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193918,"stop":1732428193918,"duration":0}},{"uid":"cf3552eb00513a1a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"f4c5ff18f0370583","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"fb676676627eae5f.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/fbbb69f84c1b433f.json b/allure-report/data/test-cases/fbbb69f84c1b433f.json
deleted file mode 100644
index 6f9d5a42ee5..00000000000
--- a/allure-report/data/test-cases/fbbb69f84c1b433f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"fbbb69f84c1b433f","name":"Testing 'solution' function","fullName":"kyu_7.substituting_variables_into_strings_padded_numbers.test_solution.SolutionTestCase#test_solution","historyId":"fbdd2daae3e9a5e6dd05fcb0403a88d1","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"description":"\n Testing 'solution' function.\n\n The should return a formatted string.\n The return value should equal \"Value is VALUE\"\n where value is a 5 digit padded number.\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing the function with various test data\n :return:\n ","descriptionHtml":"You were camping with your friends far away from home, but when it's time to go back, you realize that you fuel is running out and the nearest pump is 50 miles away! You know that on average, your car runs on about 25 miles per gallon. There are 2 gallons left. Considering these factors, write a function that tells you if it is possible to get to the pump or not. Function should return true (1 in Prolog) if it is possible and false (0 in Prolog) if not. The input values are always positive.
","status":"passed","steps":[{"name":"Enter data ((50, 25, 2)) and verify the expected output (True) vs actual result (True)","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter data ((100, 50, 1)) and verify the expected output (False) vs actual result (False)","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":2,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_ZeroFuelTestCase::0","time":{"start":1732764221320,"stop":1732764221320,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Will you make it?"},{"name":"epic","value":"8 kyu"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.will_you_make_it.test_zero_fuel"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5861d28f124b35723e00005e","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fbd2d46d837906e7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fbe0584170aaf70b.json b/allure-report/data/test-cases/fbe0584170aaf70b.json new file mode 100644 index 00000000000..a0975c1b96c --- /dev/null +++ b/allure-report/data/test-cases/fbe0584170aaf70b.json @@ -0,0 +1 @@ +{"uid":"fbe0584170aaf70b","name":"Testing the 'unique_in_order' function","fullName":"kyu_6.unique_in_order.test_unique_in_order.UniqueInOrderTestCase#test_unique_in_order","historyId":"9cff2d5d4d73fbc92b1c7c29d738384f","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"description":"\n Testing the 'unique_in_order' function\n with various test data\n :return:\n ","descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"The function should take in input array, containing the names of people who like an item. It must return the display text. For 4 or more names, the number in and 2 others simply increases.
","status":"passed","steps":[{"name":"Enter a test data and verify the expected output vs actual result","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"37e9edade389e962","name":"stdout","source":"37e9edade389e962.txt","type":"text/plain","size":348}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_LikesTestCase::0","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Who likes it?"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"epic","value":"6 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"FORMATTING"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.who_likes_it.test_likes_function"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},"source":"fc29d3ec888c78ca.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc354bf003c2f263.json b/allure-report/data/test-cases/fc354bf003c2f263.json new file mode 100644 index 00000000000..904761ed394 --- /dev/null +++ b/allure-report/data/test-cases/fc354bf003c2f263.json @@ -0,0 +1 @@ +{"uid":"fc354bf003c2f263","name":"All chars are in upper case","fullName":"kyu_6.character_frequency.test_character_frequency.LetterFrequencyTestCase#test_letter_frequency_all_caps","historyId":"f47162ca0e9bacec154c9094fd33e635","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"description":"\n Testing letter_frequency function\n where all chars are in upper case\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc_combinations_per_row function\n :return:\n ","descriptionHtml":"The function should take row number and return Pascal's Triangle combination per that row coefficients on line n.
","status":"passed","steps":[{"name":"Enter row number (0) and assert expected (1) vs actual (1).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (1) and assert expected (1) vs actual (1).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (2) and assert expected (2) vs actual (2).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (3) and assert expected (3) vs actual (3).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (4) and assert expected (4) vs actual (4).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (5) and assert expected (5) vs actual (5).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (6) and assert expected (6) vs actual (6).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter row number (7) and assert expected (7) vs actual (7).","time":{"start":1732764220467,"stop":1732764220467,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":8,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_EasyLineTestCase::0","time":{"start":1732764220480,"stop":1732764220480,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"story","value":"Easy Line"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"7 kyu"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Math"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.easy_line.test_easyline"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/56e7d40129035aed6c000632","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"fc440329cf5fac04.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fc74ffe2a6fa764b.json b/allure-report/data/test-cases/fc74ffe2a6fa764b.json new file mode 100644 index 00000000000..544e40c4b3a --- /dev/null +++ b/allure-report/data/test-cases/fc74ffe2a6fa764b.json @@ -0,0 +1 @@ +{"uid":"fc74ffe2a6fa764b","name":"test_solution_basic","fullName":"kyu_5.diophantine_equation.test_solution.SolutionTestCase#test_solution_basic","historyId":"ea802d18b118f621c35bcaf8644d85ff","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"description":"\n Testing using basic test data\n :return:\n ","descriptionHtml":" Testing using basic test data\n :return:\n
\n","status":"skipped","statusMessage":"Skipped: The solution is not ready","statusTrace":"('C:\\\\Users\\\\super\\\\Documents\\\\GitHub\\\\codewars\\\\kyu_5\\\\diophantine_equation\\\\test_solution.py', 34, 'Skipped: The solution is not ready')","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"parentSuite","value":"Novice"},{"name":"epic","value":"5 kyu"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"feature","value":"Math"},{"name":"story","value":"Diophantine Equation"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"@pytest.mark.skip(reason='The solution is not ready')"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.diophantine_equation.test_solution"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/554f76dca89983cc400000bb","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},"source":"fc74ffe2a6fa764b.json","parameterValues":[]}
\ No newline at end of file
diff --git a/allure-report/data/test-cases/fc816863f78bcd65.json b/allure-report/data/test-cases/fc816863f78bcd65.json
deleted file mode 100644
index 00aa539f9b3..00000000000
--- a/allure-report/data/test-cases/fc816863f78bcd65.json
+++ /dev/null
@@ -1 +0,0 @@
-{"uid":"fc816863f78bcd65","name":"Testing 'DefaultList' class: insert","fullName":"kyu_6.default_list.test_default_list.DefaultListTestCase#test_default_list_insert","historyId":"f3667cd9a93528eccefa1ce200cedfa2","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: insert\n :return:\n ","descriptionHtml":"Testing insert method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Insert items to the list","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"f64884da2dda6a3c","name":"stdout","source":"f64884da2dda6a3c.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"fc816863f78bcd65.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fca0a479e6a9caa.json b/allure-report/data/test-cases/fca0a479e6a9caa.json deleted file mode 100644 index 7440ebdb796..00000000000 --- a/allure-report/data/test-cases/fca0a479e6a9caa.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"fca0a479e6a9caa","name":"Testing next_smaller function","fullName":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller.NextSmallerTestCase#test_next_smaller","historyId":"9d8cb8adf1764c55348d349698b938ac","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing next_smaller function\n\n You have to test a function that takes a positive integer number\n and returns the next smaller number formed by the same digits:\n\n 21 ==> 12\n 531 ==> 513\n 2071 ==> 2017\n\n If no smaller number can be composed using those digits, return -1\n ","descriptionHtml":"Testing next_bigger function
You have to test a function that takes a positive integer number and returns the next smaller number formed by the same digits:
21 ==> 12
531 ==> 513
2071 ==> 2017
If no smaller number can be composed using those digits, return -1
","status":"passed","steps":[{"name":"Enter an integer (1027), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (1262347), calculate the result (1247632) and compare it with expected (1247632)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (907), calculate the result (790) and compare it with expected (790)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (531), calculate the result (513) and compare it with expected (513)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (135), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (2071), calculate the result (2017) and compare it with expected (2017)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (414), calculate the result (144) and compare it with expected (144)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456798), calculate the result (123456789) and compare it with expected (123456789)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (123456789), calculate the result (-1) and compare it with expected (-1)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter an integer (1234567908), calculate the result (1234567890) and compare it with expected (1234567890)","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"5fc6cabc1aa63064","name":"stdout","source":"5fc6cabc1aa63064.txt","type":"text/plain","size":565}],"parameters":[],"stepsCount":10,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_NextSmallerTestCase::0","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"STRINGS"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"INTEGERS"},{"name":"epic","value":"4 kyu"},{"name":"tag","value":"MATHEMATICS"},{"name":"tag","value":"NUMBERS"},{"name":"feature","value":"String"},{"name":"parentSuite","value":"Competent"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"story","value":"Next smaller number with the same digits"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_4.next_smaller_number_with_the_same_digits.test_next_smaller"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5659c6d896bc135c4c00021e/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},"source":"fca0a479e6a9caa.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fca8b44cee8413d5.json b/allure-report/data/test-cases/fca8b44cee8413d5.json new file mode 100644 index 00000000000..62296139fe6 --- /dev/null +++ b/allure-report/data/test-cases/fca8b44cee8413d5.json @@ -0,0 +1 @@ +{"uid":"fca8b44cee8413d5","name":"Testing check_for_factor function: positive flow","fullName":"kyu_8.grasshopper_check_for_factor.test_check_for_factor.CheckForFactorTestCase#test_check_for_factor_false","historyId":"8c287dae332df512fc4a9755020ffedc","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"description":"\n Testing check_for_factor function.\n\n This function should test if the\n factor is a factor of base.\n\n Return false if it is not a factor.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing a function named advice(agents, n) where:\n - agents is an array of agent coordinates.\n - n defines the size of the city that Bassi needs to hide in,\n in other words the side length of the square grid.\n\n The function should return a list of coordinates that are the furthest\n away (by Manhattan distance) from all agents.\n :return:\n ","descriptionHtml":"The function should return a list of coordinates that are the furthest away (by Manhattan distance) from all agents.
","status":"passed","steps":[{"name":"Enter test string and verify the output","time":{"start":1724733472624,"stop":1724733472749,"duration":125},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"c9bdbc88a29a3828","name":"stdout","source":"c9bdbc88a29a3828.txt","type":"text/plain","size":46002}],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_FirstAdviceTestCase::0","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"Lists"},{"name":"tag","value":"ALGORITHMS"},{"name":"story","value":"Find the safest places in town"},{"name":"epic","value":"5 kyu"},{"name":"suite","value":"Algorithms"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.find_the_safest_places_in_town.test_advice"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5dd82b7cd3d6c100109cb4ed/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["ALGORITHMS"]},"source":"fcb7b98557709e7f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fcdf7618a6de4bb6.json b/allure-report/data/test-cases/fcdf7618a6de4bb6.json new file mode 100644 index 00000000000..52f74fc22c0 --- /dev/null +++ b/allure-report/data/test-cases/fcdf7618a6de4bb6.json @@ -0,0 +1 @@ +{"uid":"fcdf7618a6de4bb6","name":"Testing alphanumeric function","fullName":"kyu_5.not_very_secure.test_alphanumeric.AlphanumericTestCase#test_alphanumeric","historyId":"e4b3b27b629bbd5f25abab144f66de37","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"description":"\n Testing alphanumeric function with\n various test inputs\n\n The string has the following conditions\n to be alphanumeric only\n\n 1. At least one character (\"\" is not valid)\n 2. Allowed characters are uppercase or lowercase\n latin letters and digits from 0 to 9\n 3. No whitespaces or underscore or special chars\n\n :return: None\n ","descriptionHtml":"Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Your message is a string containing space separated words.
You need to encrypt each word in the message using the following rules:
* The first letter needs to be converted to its ASCII code.
* The second letter needs to be switched with the last letter
Keepin' it simple: There are no special characters in input.
Given a mathematical expression as a string you must return the result as a number.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase","time":{"start":1732764218535,"stop":1732764218535,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing calc class\n Given a mathematical expression as a string you\n must return the result as a number.\n ","descriptionHtml":"Given a mathematical expression as a string you must return the result as a number.
","status":"passed","steps":[{"name":"Enter a test string (1 + 1), calculate the result (2.0) and compare vs expected (2)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (8/16), calculate the result (0.5) and compare vs expected (0.5)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 -(-1)), calculate the result (4.0) and compare vs expected (4)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + -2), calculate the result (0.0) and compare vs expected (0)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (10- 2- -5), calculate the result (13.0) and compare vs expected (13)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((10)))), calculate the result (10.0) and compare vs expected (10)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (3 * 5), calculate the result (15.0) and compare vs expected (15)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-7 * -(6 / 3)), calculate the result (14.0) and compare vs expected (14)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (2 + 3 * 4 / 3 - 6 / 3 * 3 + 8), calculate the result (8.0) and compare vs expected (8)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * 3 - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (1 + 2 * 3 * (5 - (3 - 1)) - 8), calculate the result (11.0) and compare vs expected (11)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-(-(-1)))), calculate the result (1.0) and compare vs expected (1)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((((((-1)))))), calculate the result (-1.0) and compare vs expected (-1)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (58 / 40 - -45 * 13 * 35 - -19 / -71 + 60), calculate the result (20536.1823943662) and compare vs expected (20536.1823943662)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (61 + 82 + -81 - -53 * 84 - -83 + -74 / 60), calculate the result (4595.766666666666) and compare vs expected (4595.766666666666)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(94) * (36 / 64 + -(13)) - (41 - (((-(-15 - 58)))) - -23)), calculate the result (1178.125) and compare vs expected (1178.125)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-91) - (92 - -2 / -(13)) / (-42 - -(((-(-90 - 30)))) * -53)), calculate the result (91.014346478264) and compare vs expected (91.014346478264)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-93) / (-36 + 26 + -(18)) + (-7 * -(((-(-67 + -95)))) + -9)), calculate the result (1121.6785714285713) and compare vs expected (1121.6785714285713)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(-23) + (-4 * -13 + -(1)) - (-30 / (((-(57 + -20)))) + 85)), calculate the result (-11.810810810810807) and compare vs expected (-11.810810810810807)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string ((72) / (-82 - -93 * -(88)) + (-18 - -(((-(60 * 97)))) + -79)), calculate the result (-5917.00871037987) and compare vs expected (-5917.00871037987)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter a test string (-(77) / (7 * -76 + (59)) + (98 / -(((-(-74 - -47)))) / -5)), calculate the result (0.8887166236003445) and compare vs expected (0.8887166236003445)","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":21,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_CalcTestCase::0","time":{"start":1732764218539,"stop":1732764218539,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"feature","value":"String"},{"name":"story","value":"Evaluate mathematical expression"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"ALGORITHMS"},{"name":"parentSuite","value":"Proficient"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"epic","value":"2 kyu"},{"name":"tag","value":"OPERATORS"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"tag","value":"PARSING STRINGS"},{"name":"suite","value":"Algorithms"},{"name":"tag","value":"NUMBERS"},{"name":"tag","value":"MATHEMATICS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"11036-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_2.evaluate_mathematical_expression.test_evaluate"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/52a78825cdfc2cfc87000005","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},"source":"fd6070318b36fb6f.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/fe6da9468168286a.json b/allure-report/data/test-cases/fe6da9468168286a.json new file mode 100644 index 00000000000..9642771e1c3 --- /dev/null +++ b/allure-report/data/test-cases/fe6da9468168286a.json @@ -0,0 +1 @@ +{"uid":"fe6da9468168286a","name":"Testing Calculator class","fullName":"kyu_3.calculator.test_calculator.CalculatorTestCase#test_calculator","historyId":"939a8064e3d28ec85fadd67010b560ae","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"description":"\n Testing Calculator class\n A simple calculator that given a string of operators '()', '+', '-', '*', '/'\n and numbers separated by spaces will return the value of that expression\n :return: None\n ","descriptionHtml":"1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
1. given a string of operators '(), +, -, *, /'and numbers separated by spaces
2. the calculator should return the value of that expression
Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'is_isogram' function\n ","descriptionHtml":"Verify that the function that determines corectly whether a string that contains only letters is an isogram. Assume the empty string is an isogram. Ignore letter case.
","status":"passed","steps":[{"name":"Enter a test string Dermatoglyphics and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isogram and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string aba and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string moOse and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string isIsogram and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter a test string and verify the result","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"a048397ca4ccbb02","name":"stdout","source":"a048397ca4ccbb02.txt","type":"text/plain","size":401}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_IsIsogramTestCase::0","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Isograms"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"suite","value":"Fundamentals"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"feature","value":"String"},{"name":"epic","value":"7 kyu"},{"name":"subSuite","value":"Unit Tests"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_7.isograms.test_is_isogram"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54ba84be607a92aa900000f1/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","FUNDAMENTALS"]},"source":"fe9e7cd98fc040fc.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/feb720678835be31.json b/allure-report/data/test-cases/feb720678835be31.json new file mode 100644 index 00000000000..a927727023b --- /dev/null +++ b/allure-report/data/test-cases/feb720678835be31.json @@ -0,0 +1 @@ +{"uid":"feb720678835be31","name":"Testing two_decimal_places function","fullName":"kyu_8.formatting_decimal_places_0.test_two_decimal_places.TwoDecimalPlacesTestCase#test_two_decimal_places","historyId":"e3ba8e7dce83ab9de36ddd0bc268f4f6","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"description":"\n Testing two_decimal_places function\n with various test inputs.\n\n Each number should be formatted that it is\n rounded to two decimal places. You don't\n need to check whether the input is a valid\n number because only valid numbers are used\n in the tests.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing alphabet_war function\n\n Introduction\n There is a war and nobody knows - the alphabet war!\n The letters hide in their nuclear shelters. The\n nuclear strikes hit the battlefield and killed a\n lot of them.\n\n Task\n Write a function that accepts battlefield string\n and returns letters that survived the nuclear strike.\n\n 1. The battlefield string consists of only small letters, #,[ and ].\n\n 2. The nuclear shelter is represented by square brackets [].\n The letters inside the square brackets represent letters\n inside the shelter.\n\n 3. The # means a place where nuclear strike hit the battlefield.\n If there is at least one # on the battlefield, all letters outside\n of shelter die. When there is no any # on the battlefield, all letters\n survive (but do not expect such scenario too often ;-P ).\n\n 4. The shelters have some durability. When 2 or more # hit close to\n the shelter, the shelter is destroyed and all letters inside evaporate.\n The 'close to the shelter' means on the ground between the shelter and\n the next shelter (or beginning/end of battlefield). The below samples\n make it clear for you.\n :return:\n ","descriptionHtml":"Test a function that accepts battlefield string and returns letters that survived the nuclear strike.
","status":"passed","steps":[{"name":"Enter test string ([a]#[b]#[c]) and verify the output (ac) vs expected (ac)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([a]#b#[c][d]) and verify the output (d) vs expected (d)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([a][b][c]) and verify the output (abc) vs expected (abc)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##a[a]b[c]#) and verify the output (c) vs expected (c)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (abde[fgh]ijk) and verify the output (abdefghijk) vs expected (abdefghijk)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (ab#de[fgh]ijk) and verify the output (fgh) vs expected (fgh)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (ab#de[fgh]ij#k) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]ijk) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abcde[fgh]) and verify the output () vs expected ()","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (abcde[fgh]) and verify the output (abcdefgh) vs expected (abcdefgh)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (##abde[fgh]ijk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string (#abde[fgh]i#jk[mn]op) and verify the output (mn) vs expected (mn)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Enter test string ([ab]adfd[dd]##[abe]dedf[ijk]d#d[h]#) and verify the output (abijk) vs expected (abijk)","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"628a7fe95e3c81cb","name":"stdout","source":"628a7fe95e3c81cb.txt","type":"text/plain","size":908}],"parameters":[],"stepsCount":14,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_AlphabetWarTestCase::0","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"tag","value":"DECLARATIVE"},{"name":"tag","value":"FEATURES"},{"name":"suite","value":"Advanced Language Features"},{"name":"tag","value":"STRINGS"},{"name":"epic","value":"5 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"REGULAR"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"tag","value":"LANGUAGE"},{"name":"feature","value":"String"},{"name":"subSuite","value":"Unit Tests"},{"name":"tag","value":"EXPRESSIONS"},{"name":"story","value":"Alphabet wars - nuclear strike"},{"name":"tag","value":"ADVANCED"},{"name":"tag","value":"PROGRAMMING"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_5.alphabet_wars_nuclear_strike.test_alphabet_war"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/alphabet-wars-nuclear-strike/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},"source":"ffa8274e0de065ab.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffafa17ec9b60c3d.json b/allure-report/data/test-cases/ffafa17ec9b60c3d.json new file mode 100644 index 00000000000..1ae60d492dd --- /dev/null +++ b/allure-report/data/test-cases/ffafa17ec9b60c3d.json @@ -0,0 +1 @@ +{"uid":"ffafa17ec9b60c3d","name":"Testing stock_list function","fullName":"kyu_6.help_the_bookseller.test_stock_list.StockListTestCase#test_stock_list","historyId":"dd45bde8a5798bd4dac8809e8aa8206c","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"descriptionHtml":"You will be given a stocklist (e.g. : L) and a list of categories in capital letters. Your task is to verify that the function finds all the books of L with codes belonging to each category of M and to sum their quantity according to each category.
","status":"passed","steps":[{"name":"Enter test data (['ABAR 200', 'CDXE 500', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B']) and verify the expected output ((A : 200) - (B : 1140)) vs actual result ((A : 200) - (B : 1140))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['BBAR 150', 'CDXE 515', 'BKWR 250', 'BTSQ 890', 'DRTY 600'], ['A', 'B', 'C', 'D']) and verify the expected output ((A : 0) - (B : 1290) - (C : 515) - (D : 600)) vs actual result ((A : 0) - (B : 1290) - (C : 515) - (D : 600))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['CBART 20', 'CDXEF 50', 'BKWRK 25', 'BTSQZ 89', 'DRTYM 60'], ['A', 'B', 'C', 'W']) and verify the expected output ((A : 0) - (B : 114) - (C : 70) - (W : 0)) vs actual result ((A : 0) - (B : 114) - (C : 70) - (W : 0))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['B', 'R', 'D', 'X']) and verify the expected output ((B : 364) - (R : 225) - (D : 60) - (X : 0)) vs actual result ((B : 364) - (R : 225) - (D : 60) - (X : 0))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data (['ROXANNE 102', 'RHODODE 123', 'BKWRKAA 125', 'BTSQZFG 239', 'DRTYMKH 060'], ['U', 'V', 'R']) and verify the expected output ((U : 0) - (V : 0) - (R : 225)) vs actual result ((U : 0) - (V : 0) - (R : 225))","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},{"name":"Enter test data ([], ['B', 'R', 'D', 'X']) and verify the expected output () vs actual result ()","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[{"uid":"f0b58c59c3feea05","name":"stdout","source":"f0b58c59c3feea05.txt","type":"text/plain","size":1127}],"parameters":[],"stepsCount":6,"hasContent":true,"attachmentStep":false,"attachmentsCount":1,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_StockListTestCase::0","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Help the bookseller !"},{"name":"tag","value":"ALGORITHMS"},{"name":"subSuite","value":"Unit Tests"},{"name":"epic","value":"6 kyu"},{"name":"parentSuite","value":"Novice"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Fundamentals"},{"name":"feature","value":"Algorithms"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"9168-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.help_the_bookseller.test_stock_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/54dc6f5a224c26032800005c/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},"source":"ffafa17ec9b60c3d.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffb404aff6d39348.json b/allure-report/data/test-cases/ffb404aff6d39348.json new file mode 100644 index 00000000000..5c052160693 --- /dev/null +++ b/allure-report/data/test-cases/ffb404aff6d39348.json @@ -0,0 +1 @@ +{"uid":"ffb404aff6d39348","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":4,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"testStage":{"description":"\n Testing shark function -> positive\n :return:\n ","descriptionHtml":"You are given 5 variables:
shark_distance = distance the shark needs to cover to eat you in metres,
shark_speed = how fast it can move in metres/second,
pontoonDistance = how far you need to swim to safety in metres,
you_speed = how fast you can swim in metres/second,
dolphin = a boolean, if true, you can half the swimming speed of the shark as the dolphin will attack it.
If you make it, return \"Alive!\", if not, return \"Shark Bait!\".
","status":"passed","steps":[{"name":"Enter test data and verify the output","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"attachments":[],"parameters":[],"stepsCount":1,"hasContent":true,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false},"afterStages":[{"name":"_unittest_setUpClass_fixture_SharkTestCase::0","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"attachmentsCount":0,"shouldDisplayMessage":false}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"Holiday VI - Shark Pontoon"},{"name":"epic","value":"8 kyu"},{"name":"tag","value":"NUMBERS"},{"name":"suite","value":"Math"},{"name":"tag","value":"MATHEMATICS"},{"name":"feature","value":"String"},{"name":"tag","value":"ALGORITHMS"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Beginner"},{"name":"tag","value":"STRINGS"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"12680-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_8.holiday_vi_shark_pontoon.test_shark"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/57e921d8b36340f1fd000059","type":"link"}],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[{"uid":"49330a85ee41c454","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0}},{"uid":"8bbe92897a0837e7","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1}},{"uid":"cbf123a6aa236a3b","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"39d768f6fda8fdf2","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0}}],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3de5bbe9e7cab5b6","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0}},{"uid":"2951c359ba3fd421","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1}},{"uid":"972d0622d29729c4","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},"source":"ffb8e8f4eed50d14.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/test-cases/ffc3f48cf5f0bf9f.json b/allure-report/data/test-cases/ffc3f48cf5f0bf9f.json deleted file mode 100644 index 9c3b739029c..00000000000 --- a/allure-report/data/test-cases/ffc3f48cf5f0bf9f.json +++ /dev/null @@ -1 +0,0 @@ -{"uid":"ffc3f48cf5f0bf9f","name":"STesting enough function","fullName":"kyu_8.will_there_be_enough_space.test_enough.EnoughTestCase#test_enough","historyId":"a2768f68ae825ba2b78473ceb0eb184a","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"description":"\n Testing enough function\n with various test data\n\n If there is enough space, return 0,\n and if there isn't, return the number\n of passengers he can't take.\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"testStage":{"description":"\n Testing 'DefaultList' class: append\n :return:\n ","descriptionHtml":"Testing append method.
","status":"passed","steps":[{"name":"Create a list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Append the list","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0},{"name":"Get list item by index and verify the results","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"attachments":[{"uid":"1aaba40705e2fc47","name":"stdout","source":"1aaba40705e2fc47.txt","type":"text/plain","size":261}],"parameters":[],"stepsCount":4,"hasContent":true,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":1},"afterStages":[{"name":"_unittest_setUpClass_fixture_DefaultListTestCase::0","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"status":"passed","steps":[],"attachments":[],"parameters":[],"stepsCount":0,"hasContent":false,"attachmentStep":false,"shouldDisplayMessage":false,"attachmentsCount":0}],"labels":[{"name":"severity","value":"normal"},{"name":"story","value":"DefaultList"},{"name":"tag","value":"OBJECT-ORIENTED PROGRAMMING"},{"name":"feature","value":"Classes"},{"name":"epic","value":"6 kyu"},{"name":"tag","value":"FUNDAMENTALS"},{"name":"suite","value":"Object-Oriented Programming"},{"name":"tag","value":"BASIC LANGUAGE FEATURES"},{"name":"tag","value":"CLASSES"},{"name":"subSuite","value":"Unit Tests"},{"name":"parentSuite","value":"Novice"},{"name":"host","value":"DESKTOP-I2O0REL"},{"name":"thread","value":"17192-MainThread"},{"name":"framework","value":"pytest"},{"name":"language","value":"cpython3"},{"name":"package","value":"kyu_6.default_list.test_default_list"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[{"name":"Source/Kata","url":"https://www.codewars.com/kata/5e882048999e6c0023412908/train/python","type":"link"}],"hidden":true,"retry":true,"extra":{"categories":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},"source":"ffd2584e60c021f7.json","parameterValues":[]} \ No newline at end of file diff --git a/allure-report/data/timeline.json b/allure-report/data/timeline.json index 73bf1091686..ec08a7f683b 100644 --- a/allure-report/data/timeline.json +++ b/allure-report/data/timeline.json @@ -1 +1 @@ -{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"DESKTOP-I2O0REL","children":[{"name":"9168-MainThread","children":[{"name":"Should return 'Publish!'","uid":"5329936079819472","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"5ecd182a341dd7b4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"a8ada246e9141e4e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Should return 'Fail!'s","uid":"b32352034ba0a692","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing dirReduc function","uid":"d65c16a1b47d468e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing encrypt_this function","uid":"6b49391a0624f51c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Non is expected","uid":"fed28c7a9755def6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing take function","uid":"cd298347a8b67e93","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'mix' function","uid":"afdaa298aab7eba8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing toJadenCase function (negative)","uid":"3cad1df85b3a49c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"All chars are in lower case","uid":"79e39b6957e2fa23","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing calc_combinations_per_row function","uid":"5ef0ca25b0e8e9c5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"powers function should return an array of unique numbers","uid":"dfb4af6de633e98","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing solution function","uid":"99f691b62c390084","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"4bdc75ea73bb042","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing pig_it function","uid":"e650d3e05f6d005c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_starting_position_from_negatives","uid":"92b17e5074e54ef7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing period_is_late function (negative)","uid":"6a770856a19e186","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing move_zeros function","uid":"bdcb772653d8aad","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"966dbbb37b9c251e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Test with empty string","uid":"f1acd3007b7873ed","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"c0ff31e127206139","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing to_table function","uid":"b78c37ec3b0f496f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing create_city_map function","uid":"e798d2f5cc38e024","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing invite_more_women function (positive)","uid":"ad12195e4f930686","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_permutations","uid":"6fbcaa806475fb37","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing check_for_factor function: positive flow","uid":"b14acb4de8eb0e3a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing flatten function","uid":"84ae1ddd95d9c6d3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"test_line_positive","uid":"f4c5ff18f0370583","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'snail' function","uid":"16026a681cee6bae","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"fbbb69f84c1b433f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"c462a5b80d49c98b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing zero_fuel function","uid":"627a7fd2fe38a284","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Positive test cases for is_prime function testing","uid":"2030ea00b6998f67","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing agents_cleanup function","uid":"34569132e9551c33","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing sum_for_list function","uid":"521b14729542d5c4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"String with alphabet chars only","uid":"a0cc441d7d4eb4dd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"get_size function tests","uid":"de3c176bdacd6cb0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing is_prime function","uid":"2f09ef1a750aec43","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"'multiply' function verification with one element list","uid":"c1ed75effe27f7a1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"a and b are equal","uid":"73a0aa79bef78acd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"ab402f3759df06f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"AND logical operator","uid":"de314943cf5bdd10","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"281344c06cab651e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_ips_between","uid":"e5ac2209dd79eabb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing to_alternating_case function","uid":"5653676293d9b683","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing share_price function","uid":"dba3101c45ee1611","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Should return 'I smell a series!'","uid":"70e9bff1f7e13160","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing remove_char function","uid":"f5da6537a014533","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing two_decimal_places function","uid":"611b4f8cf836294a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'greek_comparator' function","uid":"c301f45b01d7d10f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"bc3230f80ad8864d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing litres function with various test inputs","uid":"3151ebffdc64c952","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"46f01e6c3f72b063","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Test with one char only","uid":"b843b5b7994550ed","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing largestPower function","uid":"a5e3b3442b4ab9dd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_triangle","uid":"2d65aaadaa20d5c2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing easy_diagonal function","uid":"7f2ec06c200d3086","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"c7f51c235702ff2b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: remove","uid":"43c0068fe0a1265e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing make_upper_case function","uid":"781079de643a720d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"aac9dbbaca38b054","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Positive test cases for gen_primes function testing","uid":"928532982127bba0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing Decoding functionality","uid":"7e0e76f32ac7ce4e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing hoop_count function (negative test case)","uid":"cbc7a26721b4acfd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_sequence","uid":"900ed6bd99df3d56","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Test with regular string","uid":"2cbc31ebfbb61905","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'save' function: negative","uid":"f0c848519588d2dc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Calculator class","uid":"57bbb6ca73efd1b4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: insert","uid":"93b3042e12ae0dc2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Negative numbers","uid":"5cbeef874f8f5965","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'letter_count' function","uid":"7ba8a4247f4c6307","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Negative test cases for gen_primes function testing","uid":"5e4b0e05a0862f7e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing digital_root function","uid":"ecd029e0f98c606","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_josephus_survivor","uid":"62bf772c3a2aa5d2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing period_is_late function (positive)","uid":"8fac702aa93d2093","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"4260c429366ea20f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing sum_of_intervals function","uid":"acc95e26a53d92ff","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing 'summation' function","uid":"c8a6a3e5884b319c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"test_starting_position_from_positives","uid":"3edaeb1c9114b312","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing calculate function","uid":"7f4f9e94ec6d4f1e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"String with no duplicate chars","uid":"863d982a547ab48a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"564be6d750e08ee1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'longest_repetition' function","uid":"bb5e32abc058341d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing count_letters_and_digits function","uid":"c11bd2bbb0f17cd9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"'multiply' function verification with empty list","uid":"c8b2e451486f6a25","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing easy_line function","uid":"fb3ce43e36479ba0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'fix_the_meerkat function function verification","uid":"1152e12f582a6d83","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing odd_row function","uid":"4c3877c30e625752","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"STesting enough function","uid":"ffc3f48cf5f0bf9f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"29266ed99d46b2a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing shark function (positive)","uid":"2c2a3e42bb3933c8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"324c41918ed3c26a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5ecfe278b9d03b10","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'factorial' function","uid":"1ef1cf7383671b63","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Square numbers (positive)","uid":"f8cfd8001c2b32fd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing string_to_array function","uid":"8ded43d0fdf317ac","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"a2cb5446a34df86","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_solution_medium","uid":"a064a48d91c28f13","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Wolf at the end of the queue","uid":"a3beec2fa9a311c4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing first_non_repeating_letter function","uid":"689de206e9df0991","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"OR logical operator","uid":"cee46a1116cde2e1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"a7151a5672bbc2f6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_root function","uid":"af6e405f57c78056","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"a or b is negative","uid":"a37b17c93d1df521","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Potion class","uid":"7d1621a20d6f8fe7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"f09191f837671677","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing binary_to_string function","uid":"5c281d5272513bfd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"String with mixed type of chars","uid":"e885db3276511b9a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String alphabet chars and spaces","uid":"b864bfcb14132f63","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing make_class function","uid":"91ff78dc5a767b91","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification","uid":"6af8370630444180","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"'multiply' function verification with random list","uid":"af191d67a3f53ad3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Battle method","uid":"6ce4bba2ff4664c2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"a14fdddc74cd287e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_solution_big","uid":"6827fd264cb4d263","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Negative non consecutive number should be returned","uid":"53d75ff9d73daf75","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing domain_name function","uid":"d8e9539521c4ca00","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"move function tests","uid":"6bb1a909958ad3a2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing validate_battlefield function","uid":"36b9e5073b489f49","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"All chars are in upper case","uid":"e1e70dabc7dad91e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing done_or_not function","uid":"63cbfe00daba1c69","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"62692a0c3dd76e6c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Negative test cases for is_prime function testing","uid":"73d92f8f0c07772d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing Warrior class >>> tom","uid":"c1f2317d20109e13","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing done_or_not function","uid":"df3147d31fee6968","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing next_smaller function","uid":"913459f449cde9ee","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing growing_plant function","uid":"c63189b867db5809","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing easy_line function exception message","uid":"c7106989a12e3c0a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"d6d06cbc227917e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing make_readable function","uid":"4e7abb728f95d63f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing 'thirt' function","uid":"66f1b8d1e5ed1dbe","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"682a94239c4fcbde","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing toJadenCase function (positive)","uid":"9d90f23892be7ac3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'numericals' function","uid":"89ceeba296a3ea3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_solution_basic","uid":"ad08cb0fb6eef203","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing row_sum_odd_numbers function","uid":"d837297408a13c1e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"30cacf1f2fb31f20","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing top_3_words function","uid":"647dfe698e2a6fdb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"a and b are equal","uid":"f1c4cfcd59974ea","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing century function","uid":"1d2c6842ef40288f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"14e29fc6b385d9d8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"String with no duplicate chars","uid":"62e4f6698c2439c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing calculate_damage function","uid":"396df158495e2556","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing length function where head = None","uid":"204a2114486cc2f9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function","uid":"f0d79dba84dbdf82","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Sudoku class","uid":"a921030da8c9a520","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Testing 'DefaultList' class: append","uid":"7f890ca68cdfc481","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"a an b are positive numbers","uid":"fb032b53923bc0e9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Non square numbers (negative)","uid":"380e12b965b39180","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_line_negative","uid":"620b2589fb870406","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'pyramid' function","uid":"b98125cb150cd794","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing valid_parentheses function","uid":"d8f6e0603b79e82b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"5c64823a2a73f974","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"af3c309699fc2b8b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing max_multiple function","uid":"af5a357d104e13f2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing alphabet_war function","uid":"aca9d99cb0e5842e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},{"name":"test_smallest","uid":"257a5ad111bd69a7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'feast' function","uid":"f3b283ff21d85aec","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing the 'find_missing_number' function","uid":"f0e71551541527fc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing check_exam function","uid":"b867e5092f796e5b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Large lists","uid":"7cef5a6f9a11a927","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"f921307aa8b56caa","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in mixed case","uid":"291bd12f30edb56f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing array_diff function","uid":"f52a489cb0add672","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"goals function verification","uid":"a2776f2124bd86f4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"f5b1db39220bbcf9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing invite_more_women function (negative)","uid":"6c5d99461aa2603","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing shark function (positive)","uid":"34febd97f08d8df7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Find the int that appears an odd number of times","uid":"ccf5a8c46639d0ec","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing number_of_sigfigs function","uid":"a80b9adf611eb67d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing is_palindrome function","uid":"69f91e5f44fcbcaa","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing likes function","uid":"57946e73be805e2a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'sort_array' function","uid":"1ef3e1da7f90eb82","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"5e8c0121e99e8c0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"db7b4c897ddcf1a6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"469371686ca36a1e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: extend","uid":"4359475f5ec554bd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'is_isogram' function","uid":"3bd61bc704b417e2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Wolf in the middle of the queue","uid":"85d9d1820cce2f7e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Zero","uid":"1c92b73c681a87bf","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing solve function","uid":"d1585e7c78fd8d06","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing stock_list function","uid":"66511dda8143933e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing spiralize function","uid":"164087ecc666d9a0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing alphanumeric function","uid":"41a3f66c1c393960","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing monkey_count function","uid":"8b31152bd581baeb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing compute_ranks","uid":"cf2235e5886d8954","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing men_from_boys function","uid":"547f04beeb8e83b4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_solution_empty","uid":"c322e80c6cd8da83","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Encoding functionality","uid":"3fa15071b1bee987","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing 'order' function","uid":"91e3c1348f0cd9d2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Non consecutive number should be returned","uid":"6881087bd4c8b374","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing increment_string function","uid":"a42793a5da57f5c7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing swap_values function","uid":"ce5b44ba32daaf31","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing format_duration","uid":"409595d25cc5d60c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"XOR logical operator","uid":"3be027c950740ddd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Square numbers (positive)","uid":"8a85b974bace8b60","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing hoop_count function (positive test case)","uid":"7f23a2b3d247ad31","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"be5a8376fdcba717","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"9275e1d85a023003","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing gap function","uid":"776a48c95cfacbf7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing password function","uid":"aee4538f6230f980","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: pop","uid":"a33fb2570aec1823","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing list_squared function","uid":"60f5877935ced5c5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing two_decimal_places function","uid":"c0e2de6ef36ce602","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Verify that greet function returns the proper message","uid":"3d238edf9c2316ff","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing epidemic function","uid":"b3f7088fed8dedd7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Two smallest numbers in the start of the list","uid":"3ea60f3a146e3d51","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'group_cities' function","uid":"578c3a6cd3e7e40f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing tickets function","uid":"1c8034b1a6365fc2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing advice function","uid":"2ed8dfd7ca5a3d13","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"9710b9a44c2e3c82","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing set_alarm function","uid":"c08b2480b8f26290","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["BOOLEANS","FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"2fba83a53ac553ac","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'generate_hashtag' function","uid":"e943739be0c776f3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"74afb414b6e0cabc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing checkchoose function","uid":"3d3e842542b066f3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"742a65a772f90af2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zeros function","uid":"2c4e292a782b80e3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"f5a3f0d4d035c3a4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"17192-MainThread","children":[{"name":"Testing remove_char function","uid":"9e49aa125a2c6746","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing pig_it function","uid":"28404a37037093b2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"9864dd17c374a4d8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing to_alternating_case function","uid":"2fc3a43f4af43f00","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing spiralize function","uid":"fa56d75fd8c33c3c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing Sudoku class","uid":"502fa7fe3b72cd9a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"742f26c42b460eb3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing duplicate_encode function","uid":"c56dac6db0d4b2a0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing list_squared function","uid":"c16d54e01aa089ec","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing domain_name function","uid":"cf4cdc94d1e2968c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"f98898530a5ace8b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"e2620475a1119269","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing tickets function","uid":"9032085b91ce5826","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing top_3_words function","uid":"9d396e0b9ed83131","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Non square numbers (negative)","uid":"224cd2efeafa2904","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"35d53e86a3d51a7b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing password function","uid":"a6832cf487834f3e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_smallest","uid":"eb2c31b2b7e0b335","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"b8d68faa427e9f9d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"test_line_negative","uid":"9130d2ce9d2203c6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'group_cities' function","uid":"27163d5f2266ba73","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing 'save' function: negative","uid":"a5efb61e311267c0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing max_multiple function","uid":"9bf22c06763280e5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"All chars are in lower case","uid":"62ca3121cbd75dda","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'thirt' function","uid":"c2e82f2f4bdc38ce","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no alphabet chars","uid":"6400e4ce63a07c82","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_ips_between","uid":"3e7b87e8229dd1a3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"String with no duplicate chars","uid":"9592efbcf8c301ec","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"move function tests","uid":"a4c528481d776554","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"1c1ac4b8936ce5ba","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"6c6b3f6be4f1b963","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing decipher_this function","uid":"8772a5f624316184","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing two_decimal_places function","uid":"c4e7b8420f6ec93b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"dabab8081cda2c59","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'fix_the_meerkat function function verification","uid":"40cf8e66ad985f0e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing flatten function","uid":"bdc34fe177dff4e3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing calculate_damage function","uid":"abf7d26758417bf9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing is_palindrome function","uid":"dea681370cee7fa1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"b2086dbec02630b0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing growing_plant function","uid":"918346e849cd43c1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_random","uid":"a83637127d81f7d9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'is_isogram' function","uid":"fe9e7cd98fc040fc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Negative test cases for is_prime function testing","uid":"ce50dc4c6a1469d8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing compute_ranks","uid":"5e662d87bdd84a50","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"5ae2799c264c377c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'sort_array' function","uid":"b54ad09f549aa423","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_starting_position_from_positives","uid":"2b5b6c744b764be6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing first_non_repeated function with various inputs","uid":"4ab943002f86b4e6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Large lists","uid":"eafa77373a5f8e86","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"2b9e2e21ff531ae4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Encoding functionality","uid":"bd89dc29359aa359","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Calculator class","uid":"c28b7a3b6367ab64","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"77e7a047aea456b4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing easy_diagonal function","uid":"1f1607dce833287a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"test_basic","uid":"f80f9bf6821c7c25","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing format_duration","uid":"9f53adfade05c52d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"7fad3735c185529a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_starting_position_from_negatives","uid":"af2006fa8ad3035d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing digital_root function","uid":"df9e62f886d5e100","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"powers function should return an array of unique numbers","uid":"e8f6c075972e7fae","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing gap function","uid":"d3cdbdd9e8f95c74","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing shark function (positive)","uid":"65073b7edfec4e6b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"fca0a479e6a9caa","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"STesting enough function","uid":"cdb5c235f1a637f6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"String with mixed type of chars","uid":"56ca3efbcb176750","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing check_exam function","uid":"94af406790439c52","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"a an b are positive numbers","uid":"d8848c3e22df5008","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"test_josephus_survivor","uid":"b7aabddcd2b39bc4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing encrypt_this function","uid":"1fa9af8d7ed67798","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"'multiply' function verification with empty list","uid":"4a249bbc39e29652","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in mixed case","uid":"654b50568a4f83a1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing validate_battlefield function","uid":"79507cba518971f8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing make_class function","uid":"ea06cb7ae28c8945","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in upper case","uid":"a1f79415804ea08d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String with no duplicate chars","uid":"990d1d89497fbcc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'mix' function","uid":"77d55c76ce916d94","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Find the int that appears an odd number of times","uid":"390f34682d25d573","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing valid_parentheses function","uid":"f39f65fd61fb96b1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing 'greek_comparator' function","uid":"3e075566662ada8b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing checkchoose function","uid":"cf2907457d950935","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Test with one char only","uid":"b44596de448230b8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing easy_line function exception message","uid":"e5822ae7754d2e8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"4c1cbf2e97bf2e3a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"7954a467ea4b79e1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing litres function with various test inputs","uid":"834db107455b4f48","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing increment_string function","uid":"3a99d84c035d8b08","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Wolf at the beginning of the queue","uid":"14b78fc9da736d87","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"e66c4d32858afd04","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing share_price function","uid":"e09cd6c2a9399b84","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing likes function","uid":"6af4bd9ac0e81498","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"ad991ec2a2bdb70","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"test_solution_big","uid":"d9a0350697dd0c07","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Two smallest numbers in the start of the list","uid":"8366dd539f3f636c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'summation' function","uid":"ab9ac5c7ad2aba25","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Should return 'Publish!'","uid":"12359602ca4ac006","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing 'letter_count' function","uid":"498024d219d443a4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Negative non consecutive number should be returned","uid":"d28ad8f6f2d47ab4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing validSolution","uid":"93145ed3e3e64e21","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Testing alphanumeric function","uid":"8108c5f5e7aa4e08","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"test_sequence","uid":"9257abb983650c85","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'generate_hashtag' function","uid":"dbbed5b9582868fd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing string_to_array function","uid":"831a4a72cd312e40","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'longest_repetition' function","uid":"8fbe4fcea83005e2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Non is expected","uid":"4bb5c832e26c3df6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Test with empty string","uid":"682fdddcf91d8640","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing invite_more_women function (negative)","uid":"9bfdccd510532417","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: insert","uid":"fc816863f78bcd65","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing sum_of_intervals function","uid":"d611744698a52752","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing toJadenCase function (positive)","uid":"c54f5aa2ef47fd1b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Positive test cases for is_prime function testing","uid":"bf1274fce77ea3c3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing 'solution' function","uid":"3f5cda838e1e2c35","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"f27c61d350b9fa85","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"a and b are equal","uid":"6e0cb0022d9ce284","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"a and b are equal","uid":"e9046461411ed99f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"51e59668932e1548","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing is_prime function","uid":"79e609aaa466cdf","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Wolf at the end of the queue","uid":"f6952117a88e4fd1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing Potion class","uid":"46081367fb92978f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing zero_fuel function","uid":"aad768e2b1065e77","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"501c2967d3373bac","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"3ac1ab4d60441085","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing men_from_boys function","uid":"af8e91d1ccf7bcca","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing done_or_not function","uid":"f3421cdd7cb94a40","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing make_readable function","uid":"55df1ff2977881cd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"test_line_positive","uid":"8316509a5b8b5aee","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing check_for_factor function: positive flow","uid":"b5e325c82192cbb2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing take function","uid":"1f92252f389b32f9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing stock_list function","uid":"9835bf28bd7241b2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"5414177affd6f821","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing period_is_late function (negative)","uid":"e858a30a444a5013","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing hoop_count function (positive test case)","uid":"f7dd3a91cc990f40","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> tom","uid":"47c7c905d0e48c01","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"String alphabet chars and spaces","uid":"8a5c8b47c2adbbcb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing done_or_not function","uid":"b93db50e25bdce85","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing length function where head = None","uid":"27844b15371870f6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing create_city_map function","uid":"451dd55d479da390","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing toJadenCase function (negative)","uid":"13ca9b99f559671b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing calc function","uid":"9f56f65d85b3cd20","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"7d6f39edb784ab0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"656902c8b3d6796a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing set_alarm function","uid":"402ddb0b000d2943","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Positive test cases for gen_primes function testing","uid":"e0604dcf0c194a67","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing binary_to_string function","uid":"39e365f7b1aa879c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Wolf in the middle of the queue","uid":"8c7b1cf8369a95ff","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing array_diff function","uid":"960c8899017a5d3c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing the 'unique_in_order' function","uid":"ccc9716a60da4021","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Verify that greet function returns the proper message","uid":"4516d446aa99f6ae","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"test_solution_medium","uid":"127152ed6f6510da","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing alphabet_war function","uid":"ffa8274e0de065ab","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"test_permutations","uid":"e4e2296a825eac3f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: remove","uid":"b3ab40391b5da28d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"String with alphabet chars only","uid":"b04dd834a1d39093","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Negative numbers","uid":"1e32519d766f390f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing swap_values function","uid":"f8abc15630ec06cb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"goals function verification","uid":"9ecd11ec04bbfe07","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"7a2bcbeb9bd4f3cc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing all_fibonacci_numbers function","uid":"164c80d8543f0b6f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing dirReduc function","uid":"a9fa2bf5091c83a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing length function","uid":"73ae2edd756c4a04","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing to_table function","uid":"9bb9bf100d008741","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing the 'pyramid' function","uid":"d8b0041f6b0bb073","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"AND logical operator","uid":"9efe2e125f6b46a3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'DefaultList' class: pop","uid":"1585a2916e07d272","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'solution' function","uid":"44708af2bbd77aa6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"5021f02eb7703e13","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing shark function (negative)","uid":"a1830f831e47cf3a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'solution' function","uid":"f3ceb22d74ae937b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing calculate function","uid":"bbfb47c5ac3f243c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"78e4d411e3c9974d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Negative test cases for gen_primes function testing","uid":"73e2d6b3532a4935","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing hoop_count function (negative test case)","uid":"c32d359a7c2bd36e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'numericals' function","uid":"8fbff2bb58c8a587","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'solution' function","uid":"df06e2a5507646ca","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"40b6991ee66facde","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing zeros function","uid":"4738c72e7ac209e4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing century function","uid":"e13311d47c82f25c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"OR logical operator","uid":"a20677ca4b1de4b9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_root function","uid":"9c8287ca55a94ba5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'save' function: positive","uid":"e321a1f70ebe865a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing next_bigger function","uid":"2993b93df714aac2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"6cc55bf9ac4c61ba","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"256e8daa91edbaa5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"XOR logical operator","uid":"6b9974e5ba1b9bbc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"d8970eab34dca31f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_solution_empty","uid":"cc10d0b4585e5c2e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solution function","uid":"12da189269ca1ca6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing period_is_late function (positive)","uid":"f91cfc098c0e7678","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing sum_for_list function","uid":"23d2f8eb0089d9c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"a or b is negative","uid":"886067e282725f43","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"8a609bc5e3d23df9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing solve function","uid":"ebad35c5d56f477f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification with one element list","uid":"5d312c5161e8ccab","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: extend","uid":"c3671be37bb5a0b6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"'multiply' function verification with random list","uid":"673535ed619b4051","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_solution_basic","uid":"83e3620464a462e0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Decoding functionality","uid":"828252a14a7968ec","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing 'factorial' function","uid":"e160d8cbf25955af","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"83454665affcf957","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'count_sheeps' function: empty list","uid":"46a578b6417fd35d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing invite_more_women function (positive)","uid":"acc544bb5166af1c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"838103f8c8d195b2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Should return 'Fail!'s","uid":"eff82dffd26d2650","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"get_size function tests","uid":"7d710406d5c624ab","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"'multiply' function verification","uid":"da73571dee0329e4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Square numbers (positive)","uid":"b6d72f7fe7ecd8e2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'DefaultList' class: append","uid":"ffd2584e60c021f7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing agents_cleanup function","uid":"cb14dd2e679669bc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing move_zeros function","uid":"5d71d9a7614d7699","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Test with regular string","uid":"9b43d122708c0be8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"5dea07a70915ceac","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing largestPower function","uid":"8b0e9e4ff2cb0b57","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Non consecutive number should be returned","uid":"c7101c0acde15873","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"2b3e2264864275ed","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Zero","uid":"f98184cdb1c288eb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing odd_row function","uid":"55242408764fe7c9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing epidemic function","uid":"2f476988eff12f93","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Battle method","uid":"42d91b41703125e1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing check_for_factor function: positive flow","uid":"691795f9ff7d7473","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing monkey_count function","uid":"35dde5e5df78aa3f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"45ec56dab60499e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing advice function","uid":"fcb7b98557709e7f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file +{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","name":"timeline","children":[{"name":"DESKTOP-I2O0REL","children":[{"name":"12720-MainThread","children":[{"name":"Testing toJadenCase function (negative)","uid":"7d5b1a2ffe0a970a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'shortest_job_first(' function","uid":"6081ff969f9ea72a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"9d4c9ba0aff07821","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"ee7921cf820a84c7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"66dedca947415b6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"String with mixed type of chars","uid":"6b82f1725d1453b9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing likes function","uid":"f2bd505717a279f1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"'multiply' function verification with empty list","uid":"f909236d8dbf12db","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"4a25f98e06778e12","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'is_isogram' function","uid":"a293120689451651","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Non consecutive number should be returned","uid":"beae761fcafbcfaf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"13bf02549cf3b6be","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing period_is_late function (positive)","uid":"6044467509892ff0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing remove_char function","uid":"40605a6b825041b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'DefaultList' class: pop","uid":"2d7cf0b0c2f46c3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Verify that greet function returns the proper message","uid":"fb5c1665d86892a0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing men_from_boys function","uid":"83db549d27afd32b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"4875af937b850b1f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"97c98bd57653ce11","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"17e173f94ae42aac","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"478b2bb987aa8c1c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"c9b5322357724fe7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"OR logical operator","uid":"e417d815465280e9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing to_table function","uid":"a2d5dff34138108f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing top_3_words function","uid":"13b14c699e0075d9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing valid_parentheses function","uid":"327e71002be993d7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"abe925767bdb0e39","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing checkchoose function","uid":"c66ea864985e641","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_josephus_survivor","uid":"cc2dceff6dc83502","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194439,"stop":1732428194439,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'order' function","uid":"e298eeaddede77ad","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing growing_plant function","uid":"cb1c1fa1e4f21add","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"'multiply' function verification","uid":"49d94e51d64718a4","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing length function","uid":"2f5a6152612f841f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"b81b0ae77ee26a61","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing monkey_count function","uid":"611d558a953db4dc","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","RANGES","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing length function where head = None","uid":"d532fafc0994a83d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing hoop_count function (positive test case)","uid":"65318d64270bf167","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"f798d0ae3c0161ae","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing array_diff function","uid":"abfe637076f1879d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing shark function (negative)","uid":"9b6456a02fb8e586","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"4b75654893666492","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing alphanumeric function","uid":"dbe420147c1da53b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing epidemic function","uid":"c1010dc09e66b779","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: append","uid":"8c0ab77873b28b8f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing the 'sort_array' function","uid":"a200977d521a9785","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing litres function with various test inputs","uid":"99e1739d168a007c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing gap function","uid":"5cc568bcbc2453dc","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing hoop_count function (negative test case)","uid":"8f3c559eb697de75","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing create_city_map function","uid":"9d8106b104f30ee6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing password function","uid":"2c5d8621f6ad138a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"73ef94971e1ebc98","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"5fb0fdc1cb454fb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"test_solution_big","uid":"94ea40491ebef366","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194190,"stop":1732428194190,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing flatten function","uid":"5ffc12c38a719895","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing swap_values function","uid":"82d90de1156cd48c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing easy_diagonal function","uid":"52c8b26b912e9951","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing period_is_late function (negative)","uid":"25e6937e43cdeebb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing zero_fuel function","uid":"a9aa7cc6bd5c34be","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_sequence","uid":"38465b9126105022","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428195535,"stop":1732428195535,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing make_readable function","uid":"259fe2f0923b6d92","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"fix_the_meerkat function function verification","uid":"88ca13ae93cc2b33","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Negative test cases for is_prime function testing","uid":"b1ed0faa67962e1c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing row_sum_odd_numbers function","uid":"233e934352e9feff","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"a an b are positive numbers","uid":"2989a8630844f025","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Decoding functionality","uid":"24fce2b7549fc46","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Negative test cases for gen_primes function testing","uid":"2b0cda84a7f3dae6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing solve function","uid":"c371f8df57328f01","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"95b80642b494d437","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'solution' function","uid":"3352f60feb1f9712","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"9555c80771d907bb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'feast' function","uid":"4ac6613711439ff9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"d21849f45071cee3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Test with regular string","uid":"f8f5ce581d6aa123","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"6f95e3a968732946","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing calculate function","uid":"7de3e61f9ee174a3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"9b26a570961ab395","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"8b066879dcf90ee","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'summation' function","uid":"842c6d1ee8161eef","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Testing to_alternating_case function","uid":"a0445feeac697184","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"XOR logical operator","uid":"4062058c45eaf899","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Large lists","uid":"a24b90978f06ce4b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing Potion class","uid":"975470b122402791","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing Encoding functionality","uid":"d4260955f91337ec","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing stock_list function","uid":"4c4230f8e0e384cc","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing make_upper_case function","uid":"705f3a50d2317813","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing share_price function","uid":"a890c2eb991483c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Walker class - position property from negative grids","uid":"5f7165cd602afcbf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"6bcea3846719ead","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing next_smaller function","uid":"2dbb23fbcd106704","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing alphabet_war function","uid":"61c11f4086f447bf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing calculate_damage function","uid":"d8938caa254e2720","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"4c8c8098a5ba0587","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'mix' function","uid":"76a91c6ac0b40085","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing format_duration","uid":"52e4a6d580ce5f36","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing century function","uid":"3889b494a7c822e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"73191ac2ec23a302","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"test_ips_between","uid":"73b957e217c05b3b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194170,"stop":1732428194170,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing toJadenCase function (positive)","uid":"69c302e5122b751d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"c361fae801a29bfb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing Battle method","uid":"9d0a0378192b3dfd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing tickets function","uid":"f7d85b85e5647233","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"c0bcf993972d49ba","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Two smallest numbers in the start of the list","uid":"e897eac5693df65e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"get_size function tests","uid":"f44e27fb1ad70c92","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing digital_root function","uid":"a86267feca446780","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"ccac52878bec48b6","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing move_zeros function","uid":"7423494f63e5e438","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Wolf at the beginning of the queue","uid":"14fe289b5296dbe2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"String alphabet chars and spaces","uid":"44684f939061cdde","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Wolf at the end of the queue","uid":"15fb7a87bc12b45a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing dir_reduc function","uid":"f30c1ecba64a2387","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing largestPower function","uid":"52a5dee2c595fefe","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing is_palindrome function","uid":"f41e10c3a1cb906c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing take function","uid":"c3f4680f378d24e0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'pyramid' function","uid":"bebb2bc7f67aea79","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"1aa02f860d14689a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Should return 'Fail!'s","uid":"b37405ca3882bd1c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing Warrior class >>> tom","uid":"988614c511102150","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing 'save' function: negative","uid":"b4423bcb7f125986","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing list_squared function","uid":"39dc8cd28592a068","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_line_positive","uid":"51076f5a3e3475ad","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193918,"stop":1732428193918,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_permutations","uid":"231a2a65aa8e32a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193998,"stop":1732428193998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"7886d18807eb6c13","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing make_class function","uid":"29dbd6c095321046","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Find the int that appears an odd number of times","uid":"f70eefcf6fb13da","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing done_or_not function","uid":"b3baec89064c3983","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"2687b62465687fa1","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"600ff9f84893303e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing decipher_this function","uid":"6a0a7c65d5636a5c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"test_solution_basic","uid":"ebf90564de7fa557","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194185,"stop":1732428194185,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing invite_more_women function (negative)","uid":"aef740a566ef8e93","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing 'DefaultList' class: insert","uid":"65cae0d4eb0f95b8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Positive test cases for gen_primes function testing","uid":"387fcb0eb682916d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Test with one char only","uid":"f645f4897564ea6f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing check_for_factor function: positive flow","uid":"74b0e8a5cfe71956","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"cb921d8c86204096","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing binary_to_string function","uid":"cd72a87cc33096c5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"All chars are in lower case","uid":"9fb9fb1a0489c1a3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing the 'find_missing_number' function","uid":"33444d7890f0540","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"4d0543e962e43a97","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"f3b126d8812a5b41","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"'multiply' function verification with one element list","uid":"defdbaa3c0a6eace","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing shark function (positive)","uid":"8bbe92897a0837e7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"9c7635c760d519cd","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing Calculator class","uid":"fe6da9468168286a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Wolf in the middle of the queue","uid":"7a5a4eebadaab126","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"AND logical operator","uid":"d94530c5ab1a7ba8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing max_multiple function","uid":"bc04b77b7c90af86","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing agents_cleanup function","uid":"89e4ffe6e2b4858c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_triangle","uid":"33cbde6b5c940b7b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"test_line_negative","uid":"f5045863352b0844","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428193914,"stop":1732428193914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: remove","uid":"a712aa917a11c1d8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Non is expected","uid":"dc885b646bda3346","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing zeros function","uid":"3e0c67e156a2779f","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"aeaf73e97e8c5fe3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"6b11699e388f2732","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing count_letters_and_digits function","uid":"a124532204114d8a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"36cf4add9af1788b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing spiralize function","uid":"e032c4a87bedaab7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"move function tests","uid":"d7c080fc06195b6c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calc function","uid":"d95f3589be6b0bcb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing 'greek_comparator' function","uid":"237d8af0ad05999a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing solution function","uid":"1fa1afd4ab27e4cb","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"STesting enough function","uid":"4aeb02bd06c6709d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"a and b are equal","uid":"f6a5ab1c4ff51693","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a and b are equal","uid":"274cead41a0d037b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"powers function should return an array of unique numbers","uid":"4a34b1c679ee3fc0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'letter_count' function","uid":"27ff7d9c249750c3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing 'DefaultList' class: extend","uid":"353219a042e3862c","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing set_alarm function","uid":"60f76b164a916b4e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Should return 'Publish!'","uid":"5a1dd57eb64fa0aa","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing odd_row function","uid":"8c263832e40387fc","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing calc_combinations_per_row function","uid":"ef31dfc3c5e1eba5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing domain_name function","uid":"d4ccdeadb2c9dbf3","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"7a1146c2cbd99038","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Square numbers (positive)","uid":"67ecde96f288a7b2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"goals function verification","uid":"559abc951e1b2adf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"867f27ef53f4ce43","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"622aea036e4cf24e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Test with empty string","uid":"ea6a7fadbe04578a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"a or b is negative","uid":"51801b1697e4932d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"test_solution_medium","uid":"8da0b58109862b1b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194198,"stop":1732428194198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"6f2806a9130ac2bf","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing check_root function","uid":"66b2d8dadf3898","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"Testing sum_for_list function","uid":"4ade5d7baabdb848","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing increment_string function","uid":"efb129a92346c1e2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing the 'group_cities' function","uid":"cab9c25314cf754","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing easy_line function exception message","uid":"dfb2b5c458a3460e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"b91b3028c146d7df","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'thirt' function","uid":"691c776616074a7a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing encrypt_this function","uid":"a42f9f61a6c45aa8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing done_or_not function","uid":"f50250db1c4c6a23","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"test_solution_empty","uid":"4397ca89d4873d0b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194194,"stop":1732428194194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'solution' function","uid":"3ed2084bc0b6f03d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"7edeace92746910e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification with random list","uid":"4e0b9180415d7384","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"String with no duplicate chars","uid":"cab8fd48239210db","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"4db417c919f14dad","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing check_exam function","uid":"f0be518507eb4be5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing the 'solution' function","uid":"bcfec9a648915f6a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"b2b39aab9a2e66b","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'numericals' function","uid":"81fc21ff964037a2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing 'parts_sums' function","uid":"2e552441092e62c5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing sum_of_intervals function","uid":"761ca73c34549675","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"b74e7e51e0827a84","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Positive test cases for is_prime function testing","uid":"9400c2351555d83a","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing invite_more_women function (positive)","uid":"44dd7ed6ddd58149","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing the 'unique_in_order' function","uid":"f8f168b037580997","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing pig_it function","uid":"f60f63436b65a2b8","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"57eb8463acc316b7","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing string_to_array function","uid":"17e84d8dd3123806","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"test_smallest","uid":"bd6b8dc125a7712d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"skipped","time":{"start":1732428194259,"stop":1732428194259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing Walker class - position property from positive grids","uid":"8ade4c7a0e59dd30","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing is_prime function","uid":"6dd8a24f05e81d8d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Negative numbers","uid":"bf2cbfcfafa25fb5","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'factorial' function","uid":"bc719674954c58b2","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"a4aa1c9fe84c9cc9","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Zero","uid":"8d4255e3e5d3d8a0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing advice function","uid":"a30e32170a464ad0","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'generate_hashtag' function","uid":"539e48e315449d8e","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"523993bf26b2b2d","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing anagrams function","uid":"610996d8ca2c99cc","parentUid":"f0ded5a934f7c37b7599afabf4ca35fc","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]}],"uid":"f0ded5a934f7c37b7599afabf4ca35fc"},{"name":"17192-MainThread","children":[{"name":"Testing valid_parentheses function","uid":"3fd5a8d15bcf78fb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing sum_of_intervals function","uid":"83da90e97e5349e6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing 'feast' function","uid":"f4b278a94a1e847f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing toJadenCase function (negative)","uid":"a8ceda5e3158297c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing Warrior class >>> tom","uid":"17e43c85790e0335","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"a3b8656ba40e9af1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'generate_hashtag' function","uid":"4eec4d08404980cd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473014,"stop":1724733473014,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing largestPower function","uid":"cbaa99833f802aa6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474366,"stop":1724733474366,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"a an b are positive numbers","uid":"8fc3e4e9309f61b9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"93600ea56dc1843a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing 'save' function: negative","uid":"7a77e28352aaf1ca","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'solution' function","uid":"2620650c036fa5d9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"c50564bf93e2ebd9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing decipher_this function","uid":"c46f98a697de9b7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing count_letters_and_digits function","uid":"5493a4d389a4b9e6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'thirt' function","uid":"82e02fa0cc46fda7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473046,"stop":1724733473061,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"efb8b59d749a7701","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing is_prime function","uid":"40205ec1b133a2fd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472936,"stop":1724733472936,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"String with no duplicate chars","uid":"e95ba363003599d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing move_zeros function","uid":"f0b0565c8c046b9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472952,"stop":1724733472952,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing list_squared function","uid":"b01a24c8d7b81de4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472796,"stop":1724733472921,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Test with empty string","uid":"80f4fc862b13c5c8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing the 'unique_in_order' function","uid":"fbe0584170aaf70b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Square numbers (positive)","uid":"e50290ceef277be1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'DefaultList' class: pop","uid":"e49d46057090e83e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Two smallest numbers in the start of the list","uid":"c793fa14312a7752","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474507,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (positive)","uid":"47eeb9c764763918","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing validSolution","uid":"cb1f986a714e3e2e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472437,"stop":1724733472437,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"Large lists","uid":"d8a647ffef20d33c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474632,"stop":1724733474647,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing to_table function","uid":"65c57bdf9fea8094","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing easy_line function","uid":"d157034757bf8b88","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing alphabet_war function","uid":"eb79826fc1ce02b1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Testing check_root function","uid":"238aa65764e1d222","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'letter_count' function","uid":"31fa8902feb5ac83","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing check_exam function","uid":"6cece42c72540e7a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"b744224a1d89f44f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"8930ec9e348fd4d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"a7645184155771ad","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474679,"stop":1724733474694,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing gap function","uid":"857509cc66fb3470","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zero_fuel function","uid":"d20f10e7196a7103","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"e97e117a0c1b5372","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"a2c0d72771fc18f1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472546,"stop":1724733472546,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Testing hoop_count function (positive test case)","uid":"dba029f7988869ef","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Potion class","uid":"f0823718dfb5375c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing all_fibonacci_numbers function","uid":"394fa56a4056d8b5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472608,"stop":1724733472608,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing period_is_late function (negative)","uid":"e463bf406b88f537","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing length function","uid":"f0006f98d015ae52","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"get_size function tests","uid":"aeae161caad1a65f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474897,"stop":1724733474913,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing is_palindrome function","uid":"e184ca1912266ffb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing spiralize function","uid":"50aed2563bca9cb0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Should return 'Publish!'","uid":"ed660ef652aeab86","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing invite_more_women function (positive)","uid":"1ec22d6f24411c0a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in upper case","uid":"5b87063c55d646fa","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing sum_for_list function","uid":"f2960499936046d9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472452,"stop":1724733472499,"duration":47},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing 'snail' function","uid":"903c4d3d57375ecf","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing swap_values function","uid":"8081a31c05be488b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474913,"stop":1724733474913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"ddab479d47dfd717","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing shark function (positive)","uid":"6612fa568c338bff","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_diagonal function","uid":"ab7fe234dc976ac6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473218,"stop":1724733473889,"duration":671},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"50d6552ddbe0d86a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zeros function","uid":"73654e59fd10df4d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"a and b are equal","uid":"857dc75c5bd2dd17","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"'multiply' function verification with empty list","uid":"de63ba79b87d23ab","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing take function","uid":"84d7e1eb21948129","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474632,"stop":1724733474632,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing length function where head = None","uid":"dbfb622c1ebb235b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474272,"stop":1724733474272,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'group_cities' function","uid":"3f1d46f60fdb6ff1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474054,"stop":1724733474054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing first_non_repeated function with various inputs","uid":"5a12cd507dfc239d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing create_city_map function","uid":"ea50e73cff32206e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"'multiply' function verification with one element list","uid":"bcbd2adc2b6db91f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474397,"stop":1724733474397,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"2165433d4974d104","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing calc function","uid":"705df14002b81e6d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472280,"stop":1724733472280,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing period_is_late function (positive)","uid":"6a0ae436d7d72bb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474772,"stop":1724733474772,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing array_diff function","uid":"da6f4b236162247c","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473061,"stop":1724733473061,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing dirReduc function","uid":"87df803cadfb61a6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"6fb97aca94ac90f1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474600,"stop":1724733474600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing calculate_damage function","uid":"a65eaf9a40469196","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474023,"stop":1724733474023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing growing_plant function","uid":"b27497f64988d4cb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474288,"stop":1724733474288,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Should return 'Fail!'s","uid":"1f322fed435e4c7b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"test_solution_empty","uid":"61b2bb726cd1f52e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Should return 'I smell a series!'","uid":"1a7cac845fe0b74b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474960,"stop":1724733474960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Test with one char only","uid":"8a29f61d53cfa694","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing row_sum_odd_numbers function","uid":"bfe3079800be8e80","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'order' function","uid":"5aa15cdd34cdd72f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474147,"stop":1724733474147,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing flatten function","uid":"dbc901f56e1e91ea","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"13f07332e607443a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474663,"stop":1724733474663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Find the int that appears an odd number of times","uid":"39eb5e3cc2f12413","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing alphanumeric function","uid":"c4de7ce2ddbb42a4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472968,"stop":1724733472968,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing solve function","uid":"6cc7dd91ca56d191","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473093,"stop":1724733473093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"b82b2a2c9febe0c6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472530,"stop":1724733472530,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"a or b is negative","uid":"701c3cee2d2ca0d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"a and b are equal","uid":"115439469142590e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474179,"stop":1724733474179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"39d768f6fda8fdf2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474741,"stop":1724733474741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_solution_medium","uid":"3bf609775738b0d6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"XOR logical operator","uid":"c78ec33b6fe131a0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Test that no_space function removes the spaces","uid":"21e692bd1f008ebc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'longest_repetition' function","uid":"89e6e7af226f3582","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'summation' function","uid":"8d0f8b1f359d2e57","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Testing monkey_count function","uid":"88501d2467af647f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474585,"stop":1724733474600,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Wolf at the end of the queue","uid":"6959c64cdad7a79a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"634a6fc50b2ba707","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'fix_the_meerkat function function verification","uid":"e15a7b3e54da206a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474850,"stop":1724733474850,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"test_starting_position_from_negatives","uid":"6066d349be23d299","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"206559a31da63112","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing remove_char function","uid":"800e8bf322748e89","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474866,"stop":1724733474866,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing the 'pyramid' function","uid":"901ad6e6b17ea71d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474038,"stop":1724733474038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing increment_string function","uid":"2c9576ef35dcd75d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing checkchoose function","uid":"d208c625c151e61d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473124,"stop":1724733473124,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"d23a28a2b97dc203","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing format_duration","uid":"5ba85cabbe7e4e64","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Test with regular string","uid":"9212c6b19c8a287e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474882,"stop":1724733474882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing Calculator class","uid":"cc051f6a400be208","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Non square numbers (negative)","uid":"1d6bdee17d8fe6b6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Zero","uid":"c9095528631735ce","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing calculate function","uid":"da87c785a6ba7322","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474163,"stop":1724733474163,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing solution function","uid":"ac66f87691632de7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472405,"stop":1724733472405,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"test_sequence","uid":"78770f3ff6d80a18","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733473976,"stop":1724733473976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_starting_position_from_positives","uid":"7abec7f9960933cc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472327,"stop":1724733472327,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'sort_array' function","uid":"aadfe826c6aeccf6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing advice function","uid":"8729b907b71b7609","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472765,"duration":141},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Wolf at the beginning of the queue","uid":"aade1eebfa7ac9cf","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474991,"stop":1724733474991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing agents_cleanup function","uid":"295480517e9988a7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472624,"stop":1724733472624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing first_non_repeating_letter function","uid":"df6ed9e3e14c891a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing password function","uid":"9d243bfb1021bb63","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"powers function should return an array of unique numbers","uid":"2ea180ad6a851a6d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474460,"stop":1724733474460,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_josephus_survivor","uid":"28b8fa13ba65f773","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472921,"stop":1724733472921,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Non is expected","uid":"630542b4d1ae1e45","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474647,"stop":1724733474663,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"ee166a73f40d3c20","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474382,"stop":1724733474382,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Positive test cases for gen_primes function testing","uid":"e1aa1981a2c5874d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475038,"stop":1724733475038,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing string_transformer function","uid":"f2e80dca05a524c5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474101,"stop":1724733474101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'find_missing_number' function","uid":"67590949db6da2ee","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473991,"stop":1724733473991,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing set_alarm function","uid":"5016998388e149a3","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474897,"stop":1724733474897,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing odd_row function","uid":"a1726ce9583568d0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474069,"stop":1724733474069,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"4b38126bac5fa484","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474507,"stop":1724733474507,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing likes function","uid":"fc29d3ec888c78ca","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"623e1f94af0b0a8a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472999,"stop":1724733472999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"test_solution_big","uid":"141816067eecf7ae","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing litres function with various test inputs","uid":"b8f26140fdddc630","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_ips_between","uid":"ac366a2ecd02d5dd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472561,"stop":1724733472561,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'save' function: positive","uid":"b56ab9fe385db93a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"String alphabet chars and spaces","uid":"f1a12ce167e16758","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing pig_it function","uid":"d9826ef645180f7d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing max_multiple function","uid":"640e02afdf541b21","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474335,"stop":1724733474335,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing Battle method","uid":"b35458785abd4d83","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472515,"stop":1724733472515,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"test_line_negative","uid":"b89f1a91511e43fe","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: insert","uid":"3d6d6f8c83d1b77","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473171,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing duplicate_encode function","uid":"9f56730a0e41c609","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473202,"stop":1724733473202,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Non square numbers (negative)","uid":"ff4e61f1c87a50e9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474522,"stop":1724733474522,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing two_decimal_places function","uid":"e723e7f00f564943","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474257,"stop":1724733474257,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"9a76d6db19b09f54","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474085,"stop":1724733474085,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"test_smallest","uid":"35bd830710547eb9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472765,"stop":1724733472765,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing invite_more_women function (negative)","uid":"8f411cd28b85874e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474429,"stop":1724733474429,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"AND logical operator","uid":"eb6afac49e3912b1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474804,"stop":1724733474804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Wolf in the middle of the queue","uid":"45a592633cd8d633","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Positive test cases for is_prime function testing","uid":"de75cf0cb11d4a8a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Negative non consecutive number should be returned","uid":"1fbf7f076eee2a48","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474647,"stop":1724733474647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"String with mixed type of chars","uid":"8dfb78838f25ea50","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473929,"stop":1724733473929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing digital_root function","uid":"9675429ac75e0c11","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474116,"stop":1724733474116,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing hoop_count function (negative test case)","uid":"f997fb8bda584215","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474788,"stop":1724733474788,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing tickets function","uid":"a43120edfc7294d0","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474132,"stop":1724733474132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'DefaultList' class: append","uid":"895846e60323f8ba","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473139,"stop":1724733473139,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"String with alphabet chars only","uid":"e28dd76561e769e2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473913,"stop":1724733473913,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_random","uid":"badb2c1a8c5e2d2d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing string_to_array function","uid":"cde33394de2ec155","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474585,"stop":1724733474585,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'DefaultList' class: extend","uid":"dbd543834c91eda6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing two_decimal_places function","uid":"feb720678835be31","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474679,"stop":1724733474679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing binary_to_string function","uid":"4ed891af5fcb8959","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473077,"stop":1724733473077,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CHARACTER ENCODINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Testing 'solution' function","uid":"c4eaee07c56e2bda","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472421,"stop":1724733472437,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"7c87151d683c2aad","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473030,"stop":1724733473030,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"530cf97bef900b31","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472983,"stop":1724733472983,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"String with no alphabet chars","uid":"4bc08c1baeba1126","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"test_line_positive","uid":"bc0d03d768c84e9a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472312,"stop":1724733472312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"All chars are in mixed case","uid":"c93838d5eefff03d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"5ac2db6b2e80def2","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474476,"stop":1724733474476,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'greek_comparator' function","uid":"299c2d5af116c0c6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474725,"stop":1724733474725,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'factorial' function","uid":"5da43d3a303ec46a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474241,"stop":1724733474241,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing stock_list function","uid":"fa8c3ecdf2af6d24","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473960,"stop":1724733473960,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Negative test cases for is_prime function testing","uid":"405571045d735c93","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475007,"stop":1724733475007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing easy_line function exception message","uid":"792ce345a0c4a9e1","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474226,"stop":1724733474226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing Decoding functionality","uid":"63600542edbb694a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472343,"stop":1724733472343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing 'DefaultList' class: remove","uid":"a6eaf13968162fc7","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473171,"stop":1724733473186,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"67660b7a0592cf4d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474616,"stop":1724733474616,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"1b90e35542bb0d33","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473155,"stop":1724733473155,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing next_smaller function","uid":"a8ac1a16737b16a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing share_price function","uid":"5bbc7cd8e2683c41","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing to_alternating_case function","uid":"cd858786e595fd45","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474554,"stop":1724733474554,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"a3e36a462ba6b0e6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'numericals' function","uid":"75b2a36530573b63","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473991,"stop":1724733474007,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Negative numbers","uid":"c9fb9d40396e984d","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474538,"stop":1724733474538,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing men_from_boys function","uid":"5b0d83830c13fe88","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474444,"stop":1724733474444,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"You are given two angles -> find the 3rd.","uid":"cde4151d7e05fca5","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474944,"stop":1724733474944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing epidemic function","uid":"ab6068d2916c95e9","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473186,"stop":1724733473186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'mix' function","uid":"aea42439e3c082b4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472421,"stop":1724733472421,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Negative test cases for gen_primes function testing","uid":"ecd778da0cbd3ef","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733475022,"stop":1724733475022,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"test_basic","uid":"68fbe283acac1b6a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"18128d81fd90263f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474007,"stop":1724733474007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Verify that greet function returns the proper message","uid":"f83dd9e8b48c6bab","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474710,"stop":1724733474710,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing domain_name function","uid":"115f495bb01a1dcf","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472593,"stop":1724733472593,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing century function","uid":"ed7d0b3c14fd80c8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474569,"stop":1724733474569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_solution_basic","uid":"7c60279d383e9d8b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472577,"stop":1724733472577,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"7c3d4f705ded9146","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474491,"stop":1724733474491,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"STesting enough function","uid":"ffb404aff6d39348","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474975,"stop":1724733474975,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing check_for_factor function: positive flow","uid":"7f10132389bd0afd","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"e83e1a2466fbcf0b","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473889,"stop":1724733473905,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing calc_combinations_per_row function","uid":"4098e50c368546e","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474210,"stop":1724733474210,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"362d2abd0db10461","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474413,"stop":1724733474413,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Encoding functionality","uid":"7086e3f0d0497484","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472358,"stop":1724733472358,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing make_class function","uid":"1fc6416a9dae71a6","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474319,"stop":1724733474319,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing make_upper_case function","uid":"8dc2c9fe3450d5a4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_permutations","uid":"f9dcb27f6a2f5731","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"skipped","time":{"start":1724733472390,"stop":1724733472390,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"move function tests","uid":"ee6c548e8326102a","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474929,"stop":1724733474929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"'multiply' function verification","uid":"15b13324091bd06f","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474835,"stop":1724733474835,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing 'is_isogram' function","uid":"ee3705e6f9b5a9fb","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474304,"stop":1724733474304,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"OR logical operator","uid":"16e8835412fb12dc","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474819,"stop":1724733474819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"String with no duplicate chars","uid":"e1fc0b63790bda69","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473944,"stop":1724733473944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing shark function (negative)","uid":"55719c1a41a634a4","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474757,"stop":1724733474757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing top_3_words function","uid":"522dabffb376b9c8","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472374,"stop":1724733472374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing make_readable function","uid":"2e82de27bb7feb41","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472780,"stop":1724733472780,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"All chars are in lower case","uid":"f5f644a4f4820d20","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473108,"stop":1724733473108,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing validate_battlefield function","uid":"c2cb5c7eee700e38","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733472296,"stop":1724733472296,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing anagrams function","uid":"547e143b73834674","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733473046,"stop":1724733473046,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"goals function verification","uid":"48a3545f29b9b695","parentUid":"88f6c033dfd2fdeb63783b1f0ce238a8","status":"passed","time":{"start":1724733474694,"stop":1724733474694,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]}],"uid":"88f6c033dfd2fdeb63783b1f0ce238a8"},{"name":"9168-MainThread","children":[{"name":"Testing take function","uid":"635a66b4aaab6101","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"5a6f2f90ae14c26f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing valid_parentheses function","uid":"f0137718eeb8b928","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"a66f07e5b377a93b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","ADVANCED LANGUAGE FEATURES","SECURITY","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing digital_root function","uid":"30a51896f75b6d0e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"All chars are in upper case","uid":"c1dfde6c70281ff2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Non square numbers (negative)","uid":"5ddbb977ec343693","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing all_fibonacci_numbers function","uid":"57c8e0dc2c8662c2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Non consecutive number should be returned","uid":"f530c22a860ae687","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"2cf064760bcef1c9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Negative test cases for is_prime function testing","uid":"87664723e6f57cb6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing largestPower function","uid":"d0c0a10a6587c56e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing growing_plant function","uid":"49fa9055aa757d7b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing done_or_not function","uid":"e1b199f4400527d4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Test that no_space function removes the spaces","uid":"e60399983521438f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"630aba545cc07b30","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing permute_a_palindrome (positive)","uid":"9faa60a73c33e8b6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'solution' function","uid":"51842db2fafc0136","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing is_palindrome function","uid":"592d9cd2b7f473ab","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing duplicate_encode function","uid":"b95dabcc1b6701ba","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'factorial' function","uid":"ea83ea1df97a1dc9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing length function","uid":"8b09bdc5a519a070","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'greek_comparator' function","uid":"adba958b88eb7661","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_solution_medium","uid":"8c2738ac8b329dff","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: pop","uid":"247e42713d4388e5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing decipher_this function","uid":"53900b5a556367f8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing the 'find_missing_number' function","uid":"babd57c21b463d43","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"9e692004742b5469","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"4968a6d06aaa9f9c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"fca8b44cee8413d5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"5488ed1b45d5018a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing check_exam function","uid":"476ac59c15a93d4b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing likes function","uid":"5319ce0d16f13f7e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"goals function verification","uid":"d5cb7590517b0cc1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing odd_row function","uid":"529f7f81e90deb17","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Square numbers (positive)","uid":"5e446730ae629c6c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"'fix_the_meerkat function function verification","uid":"f9e3772c62ee9c71","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing permute_a_palindrome (negative)","uid":"9c497f5f830a2958","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing permute_a_palindrome (empty string)","uid":"1c311c9e8beb5e15","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"7de5228b774a8541","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing gap function","uid":"12409260b34394eb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing sum_for_list function","uid":"2ff548416f63af86","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"test_triangle","uid":"2febaffd225102f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'save' function: positive","uid":"edad07e580a5e4ff","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Positive test cases for gen_primes function testing","uid":"213fb9c2969dbcfd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"'multiply' function verification with empty list","uid":"eae8b41d97e1bc2d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing the 'group_cities' function","uid":"621a25121601fe95","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing next_smaller function","uid":"17e1393f574a0bd2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing alphabet_war function","uid":"5283421c34c2facb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LANGUAGE","STRINGS","DECLARATIVE","EXPRESSIONS","REGULAR","PROGRAMMING","FUNDAMENTALS","FEATURES","ADVANCED"]},{"name":"String with mixed type of chars","uid":"bbb128976da4f18a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"You are given two angles -> find the 3rd.","uid":"442731f3c269dae1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing toJadenCase function (negative)","uid":"5c8e94c26f7e775d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing Sudoku class","uid":"ea9306ba22046ff3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"test_starting_position_from_positives","uid":"5421992f655c2a5d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing shark function (negative)","uid":"9d10648422f3aeed","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: extend","uid":"acad0a25b607c9fe","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"test_solution_empty","uid":"eb28edf9a9f50007","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing remove_char function","uid":"cd3e27d521a2ebd0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"'multiply' function verification with random list","uid":"4b82056eac592aba","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Decoding functionality","uid":"8c1749fbe9590e77","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing 'snail' function","uid":"474912065ebca71","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing number_of_sigfigs function","uid":"d74e6ece91df2759","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zero_fuel function","uid":"33cec918ed89f21","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_smallest","uid":"c4045fa90cc64964","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: insert","uid":"97d66dc06144a438","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing length function where head = None","uid":"2ae21ed716f07041","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing hoop_count function (negative test case)","uid":"c6f6863411d36c7a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'pyramid' function","uid":"b43edc8fd032be6e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Test with empty string","uid":"2a72b580d7da86a8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing easy_diagonal function","uid":"da31e11488208aed","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"cb74d5229c88c838","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"String alphabet chars and spaces","uid":"48e1ee32ef518911","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"a or b is negative","uid":"3bdd18878d95b69a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing string_transformer function","uid":"a654bf006c33c2bc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Test with regular string","uid":"76e193dcfd9d956a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing to_alternating_case function","uid":"e21d0927a22c6c46","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"154178490b84fb33","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing pig_it function","uid":"2f7fe1d474868abf","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing toJadenCase function (positive)","uid":"d4662f23ff8e6620","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"d10b96136002b581","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_line_negative","uid":"82ae018d43c04f85","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing max_multiple function","uid":"40fa5a64adc09d6a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"'multiply' function verification with one element list","uid":"99363c879a15b2c4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"'multiply' function verification","uid":"1746b1293c111d5c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"test_sequence","uid":"7f8863141fd28835","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"297d8e250a3e646f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing period_is_late function (positive)","uid":"b6d612c29223f1e3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing string_to_array function","uid":"8966b735a3793409","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_upper_case function","uid":"94a0f5c0bb41d73c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing create_city_map function","uid":"981acdaf3faf1d8f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'mix' function","uid":"9c58cd2f052b55a6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Negative numbers","uid":"1186c71e39a023da","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing first_non_repeating_letter function","uid":"a65123311cff1206","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing easy_line function","uid":"3fc024845e1d1c6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"2b0e5265fce841a7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"5cb1c27a6629db87","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing binary_to_string function","uid":"7f106ecb68257734","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Wolf in the middle of the queue","uid":"ee69e9682e62678d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing solution function","uid":"78b238490a0d0c98","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"XOR logical operator","uid":"11dd46913546ab74","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'numericals' function","uid":"30782fdca988a45e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing monkey_count function","uid":"1e414e40d5aadc94","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing set_alarm function","uid":"e64a446631b3c9dc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BOOLEANS","FUNDAMENTALS"]},{"name":"test_solution_basic","uid":"c6b40d117da688e8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Non is expected","uid":"b289d731e65d2b32","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing to_table function","uid":"c409a300546c15a6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"a and b are equal","uid":"f8b721dfa4278fea","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing the 'sort_array' function","uid":"a32047be9db53ed6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing check_root function","uid":"41a0b3fc08086e96","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing dirReduc function","uid":"48f4ecefce5c7b7e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing men_from_boys function","uid":"fa7a68ec7ece512f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing easy_line function exception message","uid":"39b35ac8d306cbda","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing stock_list function","uid":"ffafa17ec9b60c3d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Positive test cases for is_prime function testing","uid":"5c8cbacba511411","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"powers function should return an array of unique numbers","uid":"5cda4840465073d5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"OR logical operator","uid":"f4f1b439f55706","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing done_or_not function","uid":"5f37f1e35250223f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"6722ace1ab285b1e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"4026348dc538d851","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing is_prime function","uid":"4ba6a0676ce201a1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Two smallest numbers in the start of the list","uid":"7f2fca7b02951542","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing litres function with various test inputs","uid":"c7a57b49fa57ab27","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing checkchoose function","uid":"d8c3cab37b2e7dbb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calc_combinations_per_row function","uid":"62dca90ee3fbe009","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Square numbers (positive)","uid":"9e10b0087e5b64c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_josephus_survivor","uid":"f7d62cc3e2943023","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'feast' function","uid":"7b7000404fe21186","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'solution' function","uid":"6d57e0044d071709","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"c8aec766397234af","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing epidemic function","uid":"4092d3473f63825","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Calculator class","uid":"daa21ce701ca0a19","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"ec1f79d5effe1aa9","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing the 'solution' function","uid":"16c1a97c5d8eacc8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"b1b4ed481e88bb25","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing zeros function","uid":"7d777a45074a2435","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Wolf at the beginning of the queue","uid":"ccc1ac75f035d282","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"6fa9bd2fff491ec7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"test_permutations","uid":"ab9420b5e475e35","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing shark function (positive)","uid":"7d152505fce8fc34","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calculate_damage function","uid":"94470fc1dd0d3d27","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"f293182f40cb67e1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"a and b are equal","uid":"dcbe3576bc7fc285","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"All chars are in mixed case","uid":"de7442e95e2bcada","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing two_decimal_places function","uid":"e697d79f20198964","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing check_for_factor function: positive flow","uid":"56d273815a84483f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calc function","uid":"61355273b18aad8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing domain_name function","uid":"8cb8fb70f937622b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'DefaultList' class: append","uid":"2752c76835c96fe1","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing sum_of_intervals function","uid":"160f56b842e7aedc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing row_sum_odd_numbers function","uid":"249dabf58e93eece","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","LISTS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'save' function: negative","uid":"a30886bec4fc9e3b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing validSolution","uid":"83385fc467b4a8e5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"All chars are in lower case","uid":"f7ab664600a360e4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing share_price function","uid":"70a5d60b5abb1f3f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'thirt' function","uid":"a2e66c48b8347bd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Negative non consecutive number should be returned","uid":"656d201041ba5817","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'solution' function","uid":"809e3691a3f26473","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"AND logical operator","uid":"b87f80755bc77034","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Zero","uid":"e186908da5e6d7c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'is_isogram' function","uid":"59d6a997f5b4aca5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"get_size function tests","uid":"703af1f2e157e358","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing tickets function","uid":"be22b07b7195c319","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing two_decimal_places function","uid":"59b3d14f4d280871","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing period_is_late function (negative)","uid":"1527893d1e9640cd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing swap_values function","uid":"212bbd08068e155a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Verify that greet function returns the proper message","uid":"65ae520512a0a5fc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing invite_more_women function (negative)","uid":"e92026f4174cc7e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Encoding functionality","uid":"83c9df798b4e44f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing move_zeros function","uid":"3e8030135d08e5ec","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing top_3_words function","uid":"7b5c67e400b6b0a0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing advice function","uid":"3765df1aaa05656f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing list_squared function","uid":"c77cd6e80c5f42f2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Testing century function","uid":"cfca05e0b975fd2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"test_ips_between","uid":"a7585b25b34695fe","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing increment_string function","uid":"a912833bc91830ef","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"59cf1cc1a5cff79","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing anagrams function","uid":"92695f36fc50d8a3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Wolf at the end of the queue","uid":"7e8e53d16d69077","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing make_readable function","uid":"8c72b971279020f","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: remove","uid":"653d6409b929d554","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing invite_more_women function (positive)","uid":"9d27d41bfa6de8dc","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing hoop_count function (positive test case)","uid":"5ef563c60f1007ea","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calculate function","uid":"7cacdad83c7f5f10","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Publish!'","uid":"90ca6a0c009b593","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"test_solution_big","uid":"ce842a0bacb75304","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Test with one char only","uid":"3b9843a7de0fadce","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing solve function","uid":"20bc61b759bd6ae3","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"d1be51368671f899","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing flatten function","uid":"43e580c8ccbc2ae0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Testing 'letter_count' function","uid":"7019f73b053e7ae6","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing done_or_not function","uid":"eeeab72dd7b98f53","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"String with no alphabet chars","uid":"3d317930834fc5a0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing spiralize function","uid":"4736a066b330a3e5","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"a an b are positive numbers","uid":"77858b1148b2de9d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"String with no duplicate chars","uid":"d579d28da21d0458","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing format_duration","uid":"4e87d924fe50548","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"86bec9b105840355","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing next_bigger function","uid":"8ebc308a5806000e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"test_line_positive","uid":"54d8fcc9aa407768","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Large lists","uid":"7616dbf2a034685c","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"STesting enough function","uid":"763ac19ad87ac3cd","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"test_starting_position_from_negatives","uid":"3bcfd32a26f68acf","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"skipped","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Should return 'Fail!'s","uid":"1039c276c50498c7","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing Battle method","uid":"946874b940758475","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing make_class function","uid":"91592072a42568a2","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'count_sheeps' function: bad input","uid":"3f9c404f9b9586bb","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing array_diff function","uid":"aee1417e53524250","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing shark function (positive)","uid":"cbf123a6aa236a3b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Find the int that appears an odd number of times","uid":"c3fd98c434ab7b3d","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing Potion class","uid":"24b90ea9d401f78e","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"ac4b8e11c3d56a6a","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing 'summation' function","uid":"3371b53ac373c146","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"String with alphabet chars only","uid":"522017a410240b47","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"move function tests","uid":"c1f0d1467179d957","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> tom","uid":"119afffc6f9f5da8","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing password function","uid":"3cf56b09b04e1e0","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":[]},{"name":"Testing alphanumeric function","uid":"cfba8b314ab82273","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Negative test cases for gen_primes function testing","uid":"4d2239036502cf20","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing 'generate_hashtag' function","uid":"64e42fae205d69e4","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"bdfd73520247929b","parentUid":"cfeb7f59be7c3a466938a2d8e32e4ead","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]}],"uid":"cfeb7f59be7c3a466938a2d8e32e4ead"},{"name":"11036-MainThread","children":[{"name":"Testing max_multiple function","uid":"bc5f75e76b0bf63","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"String with no duplicate chars","uid":"95fe30b3b4a958d6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"42eeca3ee9327f4d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Test with regular string","uid":"f85747ab66ba1ea5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing the 'solution' function","uid":"d4bec70d6611b3f1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing stock_list function","uid":"65519c1899e60621","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing array_diff function","uid":"f06c10d847061aa8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing easy_diagonal function","uid":"4b7f4ecd4f7fef24","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Non is expected","uid":"cac786da5d1fffa","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing largestPower function","uid":"c12d427c645c762f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"test_permutations","uid":"b37adbf845502fe8","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218647,"stop":1732764218647,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"get_size function tests","uid":"94a29fbc0358d34a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing gap function","uid":"fee32280a5b8d3da","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"test_line_positive","uid":"453e6c562bbae4f7","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218562,"stop":1732764218562,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing solve function","uid":"1bbca055747eb3d5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing toJadenCase function (negative)","uid":"520c156ef3917d19","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing zeros function","uid":"3855d942abd2cdd4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing alphabet_war function","uid":"cbad1c121fb6a6fb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","DECLARATIVE","REGULAR","EXPRESSIONS","FUNDAMENTALS","PROGRAMMING","FEATURES","ADVANCED"]},{"name":"Zero","uid":"add9ef76ac7e1779","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing hoop_count function (positive test case)","uid":"7b778b64af209b91","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Test that no_space function removes the spaces","uid":"184d3db7becc05d3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing create_city_map function","uid":"3a88934bc640802f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing advice function","uid":"a3e837b6100ae0c4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"46c119be5111a687","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing monkey_count function","uid":"7f28ecea13e4e886","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"5567075f87625777","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing shark function (positive)","uid":"49330a85ee41c454","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing take function","uid":"9e4cc550b1ac8808","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing growing_plant function","uid":"a6f615adf58af171","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"158fcdb2f6fefbbc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Should return 'I smell a series!'","uid":"258638d82f4f543b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing is_prime function","uid":"335bbd097bcd7f07","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Large lists","uid":"b876874728bc13e3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing epidemic function","uid":"88b006bece2616b2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing two_decimal_places function","uid":"d88ebfa77f8bc285","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"73ceae1f03ba10a4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Should return 'Publish!'","uid":"b69923e60de0964d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"String with mixed type of chars","uid":"ebdfd3783858102","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"XOR logical operator","uid":"8603861216d7d4c6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"29ff0a22a55da068","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing hoop_count function (negative test case)","uid":"44275f12522bda28","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"57fc1349073137a7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing two_decimal_places function","uid":"ab2861d9bed3765e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Test with empty string","uid":"46d58d763aebfedc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Negative test cases for is_prime function testing","uid":"b591ce46c92300fc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing 'feast' function","uid":"aa0a102aebb2ddf0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing Decoding functionality","uid":"8d44f2b97a47f0f3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing 'DefaultList' class: extend","uid":"e8a2735e9df336cb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing solution function","uid":"ac8d0c005e499da5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","STRING","ALGORITHMS"]},{"name":"Testing 'snail' function","uid":"824bfc7518105d49","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing done_or_not function","uid":"4f327dad8c4d7133","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: remove","uid":"c8141b2abd713c90","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"String with no duplicate chars","uid":"94aee1df5a6d75c7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_ips_between","uid":"4803d92c50fef81a","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218824,"stop":1732764218824,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing period_is_late function (positive)","uid":"378737d914acf19c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: insert","uid":"ae9de108d4c0920c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing domain_name function","uid":"87f281129608ef41","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"OR logical operator","uid":"b9ceaeaa317803af","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'save' function: negative","uid":"da0fce94db2e25fb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing done_or_not function","uid":"35a3e561b98b1660","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing alphanumeric function","uid":"fcdf7618a6de4bb6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","BUGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"AND logical operator","uid":"23d88d3c634a9318","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"94887fb9761f9305","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"a9fe3e48d71bee45","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"a and b are equal","uid":"7f6d50d19e0f3de2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"String with alphabet chars only","uid":"4391e2c86d08e20","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing Battle method","uid":"74d08353b69572cc","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"7062f727dbe31207","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing string_transformer function","uid":"56d0c429ca5615e0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'parts_sums' function","uid":"931a1e301c63c1a1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'vaporcode' function","uid":"ce004e41100b8867","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Encoding functionality","uid":"56a70ac6c19b5c2a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"move function tests","uid":"9823bb7abc34f758","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing format_duration","uid":"36190d8eb76d5fc1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing checkchoose function","uid":"823872001ab9ba87","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing validSolution","uid":"4928db7c01341cec","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"'multiply' function verification with one element list","uid":"31667aebf4f2d5e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"test_triangle","uid":"338755bddf5c3394","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"9edb2b589904d584","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing make_class function","uid":"e7e1c54963ba7bf7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"bf262768264e0cc2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing litres function with various test inputs","uid":"19ea1d35de320e7d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"aa00c7be0a861177","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Wolf at the beginning of the queue","uid":"55bf5f341a824ad0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing row_sum_odd_numbers function","uid":"694d122063aa9b02","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"a an b are positive numbers","uid":"5d6b33acb65bb93f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing check_root function","uid":"6826d14915228b29","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","MATHEMATICS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"Negative numbers","uid":"da622740411a3e7a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_josephus_survivor","uid":"abbcc324b9e8a1ea","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764219113,"stop":1732764219113,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'unique_in_order' function","uid":"b759b096d671749a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (positive)","uid":"a78dd64f3f2b4648","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Sudoku class","uid":"b4318b89966fb16","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"Verify that greet function returns the proper message","uid":"ccc6c3ffee5b9f76","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing easy_line function","uid":"694927049ad61cd3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing make_upper_case function","uid":"9bb51a042d358695","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"8b29a5334bdbc1b5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing next_smaller function","uid":"5052ffebbe9e5222","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Should return 'Fail!'s","uid":"c149947a189c0282","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing first_non_repeating_letter function","uid":"c6c0fd894bae942b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"fix_the_meerkat function function verification","uid":"5cbc168dcad54c45","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Test with one char only","uid":"b4a93aab25c4b5f7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"c24c0d6b556365c6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing odd_row function","uid":"90548ade83f4ad3f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"test_solution_empty","uid":"2200ea2b7046c13e","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218847,"stop":1732764218847,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing make_readable function","uid":"839787eb550f06c0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Testing calculate function","uid":"9b5e6753141602b8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'generate_hashtag' function","uid":"bb728a3601eecc02","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"Non consecutive number should be returned","uid":"d2b6a960777edb8f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_solution_big","uid":"427e4e0e38cec3a1","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218842,"stop":1732764218842,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"test_solution_medium","uid":"77d417f099b71c46","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218853,"stop":1732764218853,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'numericals' function","uid":"6410dd1650b4faab","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PERFORMANCE","PUZZLES","ALGORITHMS"]},{"name":"'multiply' function verification with empty list","uid":"b4b8e18ee349d818","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"String with no alphabet chars","uid":"1809b6a5abfda186","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing tickets function","uid":"a24df28711252fb3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: pop","uid":"4f80880da2e426c8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing spiralize function","uid":"250def6bd45574c1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"Testing string_to_array function","uid":"62263e93a5cfddb4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing compute_ranks","uid":"43ae83fa91833c8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing pig_it function","uid":"458495e9a11139a4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"test_smallest","uid":"6327808bac6df1db","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218915,"stop":1732764218915,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing duplicate_encode function","uid":"5f3a50fbe3f45101","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing agents_cleanup function","uid":"32c8f819a3205d1d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'letter_count' function","uid":"b56e159e9a8b128f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"Testing permute_a_palindrome (negative)","uid":"ef78b96af32d8f44","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"7ce67f10ab4c86ee","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification","uid":"b00d5d40ec75b250","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing Walker class - position property from positive grids","uid":"63b9cb3528bcd1e8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"d3b84ca939222bc6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'thirt' function","uid":"732bf4c64788dac","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"ba4a3c35a46d9d79","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing check_for_factor function: positive flow","uid":"b8c210754da93c52","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing swap_values function","uid":"8d156d3e42d4375b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing sum_for_list function","uid":"9546971ec41b8ce1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing all_fibonacci_numbers function","uid":"db31ba951eab96a9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing invite_more_women function (positive)","uid":"14a62b5662523525","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"All chars are in lower case","uid":"38a864ebd2e42623","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"d12e38fc8c8ec4dd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing men_from_boys function","uid":"a2ff67830434b9af","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing Potion class","uid":"e427ef86cabe9ddd","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing encrypt_this function","uid":"fd479ce41ec7634c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing zero_fuel function","uid":"fbd2d46d837906e7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing anagrams function","uid":"1df66f77b1cc31ad","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing increment_string function","uid":"5e72598a5c064723","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"test_sequence","uid":"8bb4333bde7b6f57","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764220219,"stop":1732764220219,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing is_palindrome function","uid":"86de6e64454fca19","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"a or b is negative","uid":"ed2f3c923fde4413","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"35dae73baea1e718","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"5ba553d4084ace90","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing period_is_late function (negative)","uid":"f234151114f72d73","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing likes function","uid":"e5feb33263ee430e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing move_zeros function","uid":"a9f0e43ae54089ff","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing done_or_not function","uid":"fb3c794e959e544","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing calculate_damage function","uid":"33fde501ad5f49b7","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","GAMES","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"3e3617735ee8a318","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"c666a2fc70e4969f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"bef296bdea9fd681","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing valid_parentheses function","uid":"aef6b82f43e1b4b4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"e9c0a9198a3e1b18","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FORMATTING","ALGORITHMS"]},{"name":"Testing Calculator class","uid":"b79318ff2ae67fee","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing decipher_this function","uid":"c77ad5c459e90990","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"9328d9c37e2386a6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"You are given two angles -> find the 3rd.","uid":"bb902a37816cc407","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'sort_array' function","uid":"61f607b52c867fb3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"test_line_negative","uid":"d645ef6b4817b107","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218558,"stop":1732764218558,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"All chars are in upper case","uid":"fc354bf003c2f263","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing next_bigger function","uid":"e7d0a39712ee3eee","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing 'factorial' function","uid":"a394baafe8edd2c5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing century function","uid":"8809fca01a516cec","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing 'greek_comparator' function","uid":"caa8571433eea386","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"a72e2d4e966e7c09","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"powers function should return an array of unique numbers","uid":"d4597108775e2ebb","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"50577b0cb2a4b7be","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing password function","uid":"305e207ab9e52150","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"All chars are in mixed case","uid":"11b930e98296bcb5","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"fa6ca2a58e326e7c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing flatten function","uid":"1d0688b018eb523","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"STesting enough function","uid":"da018a416a2e5798","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing invite_more_women function (negative)","uid":"c5e6a87af3754f9e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing top_3_words function","uid":"81d67983376326e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Testing set_alarm function","uid":"94d4bd5574aa8f7b","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing to_alternating_case function","uid":"18ce21893b263766","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing sum_of_intervals function","uid":"1191e503f4a01ba8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Testing length function","uid":"31754715fc04b029","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing 'mix' function","uid":"196d20a77b3bd50d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'solution' function","uid":"b1b08a9c0991d73d","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing number_of_sigfigs function","uid":"5444c88fc365358c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Testing length function where head = None","uid":"84e5ce529aafcfa9","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing dir_reduc function","uid":"b0da8ff80b8db87","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Find the int that appears an odd number of times","uid":"bff3d119847a95d6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"a and b are equal","uid":"ed375a568ef53727","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"goals function verification","uid":"4d86cc91fd1923ec","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"a5ef1e97378ae643","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES","ALGORITHMS","RULES"]},{"name":"Testing share_price function","uid":"f8378587d25efdca","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing Walker class - position property from negative grids","uid":"2cc31ac5154e0ba1","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing the 'pyramid' function","uid":"ae9c6bad3687824e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Positive test cases for is_prime function testing","uid":"69bff1baf8829aa6","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Wolf at the end of the queue","uid":"44221036fb99a571","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing calc function","uid":"fd6070318b36fb6f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"432b6e8e59506414","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Non square numbers (negative)","uid":"e3e2f391aab3cb96","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing the 'group_cities' function","uid":"5f01b1bb86ec5e4a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing shark function (negative)","uid":"c3dd54ea07cba973","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Two smallest numbers in the start of the list","uid":"a6ecb3b474360e70","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing binary_to_string function","uid":"627ac903c8bfc90f","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"String alphabet chars and spaces","uid":"6da9e4a8a463c592","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing calc_combinations_per_row function","uid":"fc440329cf5fac04","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'is_isogram' function","uid":"d9035fa8f853a08a","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'DefaultList' class: append","uid":"7fae1c49f318568","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","BASIC LANGUAGE FEATURES","CLASSES"]},{"name":"Testing 'shortest_job_first(' function","uid":"b7eddfa61552d783","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing list_squared function","uid":"3376cc456abfb7e3","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"test_solution_basic","uid":"fc74ffe2a6fa764b","parentUid":"47f66d4df6594479df63e370348f1468","status":"skipped","time":{"start":1732764218838,"stop":1732764218838,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing easy_line function exception message","uid":"418db164c4b04ca4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing remove_char function","uid":"c51d0888e1777a9e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing the 'find_missing_number' function","uid":"77a4cf3d728ec302","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing check_exam function","uid":"3af8d9a34aaedf9e","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Square numbers (positive)","uid":"19edf49636f3f12c","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing 'summation' function","uid":"31e5836e8c9c8975","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Positive test cases for gen_primes function testing","uid":"caf9670d0e0965a0","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing to_table function","uid":"3e7bb737d50c6ad2","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing 'save' function: positive","uid":"e50cfef6d8bb4879","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"'multiply' function verification with random list","uid":"6db0502ca689b396","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing the 'valid_braces' function","uid":"f52796969ad8c6a8","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764220383,"stop":1732764220385,"duration":2},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Wolf in the middle of the queue","uid":"d56b8598f52532d4","parentUid":"47f66d4df6594479df63e370348f1468","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]}],"uid":"47f66d4df6594479df63e370348f1468"},{"name":"12680-MainThread","children":[{"name":"Test that no_space function removes the spaces","uid":"b4cae88de9afaa55","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing next_bigger function","uid":"1d49801d4e6b4921","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"'multiply' function verification: lists with multiple digits","uid":"d2af0876e7f45a7f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Positive test cases for gen_primes function testing","uid":"c245bb8192a35073","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing all_fibonacci_numbers function","uid":"315e825b7f114d5b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing Battle method","uid":"c678c03e12583e98","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Testing gap function","uid":"8caf8fe76e46aa0f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing men_from_boys function","uid":"f4e7ccb7c6ccb848","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"String with alphabet chars only","uid":"777b1d9b55eb3ae9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Negative test cases for gen_primes function testing","uid":"bb8e119491d2ebc3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"'multiply' function verification","uid":"456a7345e9aeb905","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","INTRODUCTION"]},{"name":"Testing 'generate_hashtag' function","uid":"3f2e19b818fd15f5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS"]},{"name":"test_sequence","uid":"21221b4a48a21055","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing permute_a_palindrome (negative)","uid":"469fb46dbe1a31d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"You are given two angles -> find the 3rd.","uid":"28baf5593cc14310","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing is_prime function","uid":"8eb80b15a6d6b848","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["DESIGN PRINCIPLES","MEMOIZATION","OPTIMIZATION","ALGORITHMS","DESIGN PATTERNS"]},{"name":"Testing max_multiple function","uid":"971c2aa5dd36f62c","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS","ARRAYS"]},{"name":"Testing check_root function","uid":"cbb9443875889585","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS","ARRAYS"]},{"name":"Testing check_for_factor function: positive flow","uid":"873ec1972fa36468","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Test for invalid large string","uid":"d0cba34627dad034","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing 'summation' function","uid":"c8c57e21dd6fea81","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","LOOPS"]},{"name":"Testing 'letter_count' function","uid":"4e3fc5966ad47411","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","HASHES","DATA STRUCTURES"]},{"name":"goals function verification","uid":"5496efe2fd3e353","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"'multiply' function verification with empty list","uid":"ae87022eb9b205bd","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing zero_fuel function","uid":"3f3a4afa0166112e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: mixed list","uid":"a95c24b51d5c9432","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing number_of_sigfigs function","uid":"230fd42f20a11e18","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","ALGORITHMS"]},{"name":"Testing make_upper_case function","uid":"e42b69525abdede6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing Warrior class >>> bruce_lee","uid":"8c4575be21ff0ded","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Test with regular string","uid":"fef6b9be2b6df65c","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'sum_triangular_numbers' with negative numbers","uid":"9b651a3e27842d38","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'count_sheeps' function: empty list","uid":"14c26803c1139e78","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing length function","uid":"e0dd8dfaed76aa75","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Testing string_transformer function","uid":"101b76d3a18bb4c3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing the 'group_cities' function","uid":"1c66d03c44b01cf6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LISTS","SORTING ALGORITHMS","PUZZLES","DATA STRUCTURES"]},{"name":"Testing decipher_this function","uid":"afa4196b56245753","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ALGORITHMS","ARRAYS","CRYPTOGRAPHY"]},{"name":"Testing permute_a_palindrome (empty string)","uid":"f74a1a4c19be5344","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing string_to_array function","uid":"7940a8ba615e27f7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing top_3_words function","uid":"f2a1a9d494a0859","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FILTERING","PARSING","ALGORITHMS","RANKING"]},{"name":"Should return 'Publish!'","uid":"2c379ae83853bb2a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing monkey_count function","uid":"5880c730022f01ee","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["RANGES","FUNDAMENTALS","LISTS","BASIC LANGUAGE FEATURES","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Test for valid large string","uid":"9cc2024d730e5f8a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing odd_row function","uid":"733b2334645f5c42","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","ALGORITHMS"]},{"name":"Testing 'order' function","uid":"7fd83f8828bfb391","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing growing_plant function","uid":"4d64a30c387b7743","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"a and b are equal","uid":"8146fd50051ac96b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing digital_root function","uid":"2571a6d17171a809","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing 'mix' function","uid":"f87e2580dd045df5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Wolf in the middle of the queue","uid":"e578dac1473f78ec","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing easy_diagonal function","uid":"48f19bb58dd1432f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"move function tests","uid":"5814d63d4b392228","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing encrypt_this function","uid":"984b8a80ce69773d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","CIPHERS","SECURITY","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS","ARRAYS","CRYPTOGRAPHY"]},{"name":"test_smallest","uid":"7ea8a8dc382128a4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing the 'valid_braces' function","uid":"e6b67890527d37e6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":1,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Simple test for empty string.","uid":"78aec59881bd461e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing 'is_isogram' function","uid":"af16ce1f4d774662","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"test_line_positive","uid":"fb676676627eae5f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing easy_line function","uid":"5238b22fc20ccda9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'longest_repetition' function","uid":"1137568979e0ed3a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing flatten function","uid":"c8d9a4d573dbda2b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS","ARRAYS"]},{"name":"Non consecutive number should be returned","uid":"a492c358ecb2902d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'DefaultList' class: append","uid":"44141b5da145c70a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"test_solution_medium","uid":"ec58e61448a9c6a8","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Test with one char only","uid":"e96aee50481acdd6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"test_ips_between","uid":"43578fd4f74ce5d9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'sum_triangular_numbers' with positive numbers","uid":"ad642268f112be60","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Negative non consecutive number should be returned","uid":"8a0604fc927a7480","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing litres function with various test inputs","uid":"5ac65e8dc17d86a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"'multiply' function verification with random list","uid":"555817f2fd5ba68f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing hoop_count function (positive test case)","uid":"37fbb0401b01604d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing shark function (negative)","uid":"a5a7f52be4bf7369","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing move_zeros function","uid":"ac824f903545a6e7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["SORTING","ALGORITHMS","INTERVIEW QUESTIONS","ARRAYS"]},{"name":"Testing password function","uid":"49244d740987433","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"String with no alphabet chars","uid":"aa7d2e5e86b66673","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing zeros function","uid":"40b9b78f2d258cf9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"Square numbers (positive)","uid":"5b36ed636679609b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"a or b is negative","uid":"f74116cee1d73fd7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"5b5df6c66b23ba75","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ARRAY","ALGORITHMS"]},{"name":"Testing duplicate_encode function","uid":"157d23c0aff9e075","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing stock_list function","uid":"aa0fd3e8d8009a95","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing dir_reduc function","uid":"d49eccd60ce84feb","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing solve function","uid":"c1393951861e51a9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"72c2edc2055d0da7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","DESIGN PRINCIPLES","FUNDAMENTALS","MEMOIZATION","DESIGN PATTERNS","PARSING ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"ffb8e8f4eed50d14","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing advice function","uid":"506e0ee504d23a05","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing first_non_repeated function with various inputs","uid":"cd56af2e749c4e8a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing done_or_not function","uid":"a90239b6ef90f6a6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","CONTROL FLOW","PUZZLES","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS","DATA STRUCTURES"]},{"name":"Testing Calculator class","uid":"d06d6d8db945d4d7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","EXPRESSIONS","FUNDAMENTALS","PARSING","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing period_is_late function (negative)","uid":"a1c87b2c2a6c0bb7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing sum_for_list function","uid":"af3a43fc31649664","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["NUMBERS","ALGORITHMS","ARRAYS"]},{"name":"Testing increment_string function","uid":"9ba260a0149e6341","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","STRINGS PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing set_alarm function","uid":"c50649c997228fe6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","BOOLEANS"]},{"name":"Testing domain_name function","uid":"31ce0fdb81c2daf6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","PARSING","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","ALGORITHMS","REGULAR EXPRESSIONS"]},{"name":"Testing 'count_sheeps' function: positive flow","uid":"4d07449717f6193c","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing the 'solution' function","uid":"d0b6dccad411741e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","ALGORITHMS"]},{"name":"fix_the_meerkat function function verification","uid":"afc8e5dacd30bc41","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"String with mixed type of chars","uid":"f5898a8468d0cd4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing validate_battlefield function","uid":"c515ef635fa26df1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAME BOARDS","GAMES","VALIDATION","ALGORITHMS","ARRAYS"]},{"name":"Testing 'parts_sums' function","uid":"902288cde0f2109a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","PERFORMANCE","ALGORITHMS"]},{"name":"Testing alphabet_war function","uid":"2de9285990285353","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","LANGUAGE","EXPRESSIONS","REGULAR","DECLARATIVE","FUNDAMENTALS","PROGRAMMING","ADVANCED","FEATURES"]},{"name":"Testing row_sum_odd_numbers function","uid":"69f67038b11a4861","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","LISTS","NUMBERS","ARITHMETIC","ALGORITHMS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing take function","uid":"47e3461a4e252fc1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Positive test cases for is_prime function testing","uid":"5c460b7e756cd57","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"Testing format_duration","uid":"b92f0db6c4ee4ff0","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","DATES/TIME","FORMATS","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with zero","uid":"690df5b9e2e97d3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing to_alternating_case function","uid":"cb005e45e7b312b5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"STesting enough function","uid":"b59318a9c97ef9f1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS"]},{"name":"Testing 'shortest_job_first(' function","uid":"87b2e8453406c3f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["SCHEDULING","QUEUES","ALGORITHMS"]},{"name":"Testing likes function","uid":"5ff9cf70b259ca21","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing Encoding functionality","uid":"644c808df55456e9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing Decoding functionality","uid":"ca1eccae180a083e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","CIPHERS","SECURITY","ALGORITHMS","CRYPTOGRAPHY"]},{"name":"Testing spiralize function","uid":"7aa3fbfc8218c54e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","ARRAYS"]},{"name":"test_solution_empty","uid":"c62025a79b33eb3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing is_palindrome function","uid":"564bcc936cf15d1a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing pig_it function","uid":"22bb7ddce4971121","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'has_subpattern' (part 1) function","uid":"c1326d9a3ad9ddfb","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing the 'pyramid' function","uid":"83ae1189d3669b33","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"All chars are in mixed case","uid":"293f48722d8450df","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing count_letters_and_digits function","uid":"ead644ae8ee031c3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing 'greek_comparator' function","uid":"3a516b9dc7b53625","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing make_readable function","uid":"a92222b0b7f4d601","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","DATES/TIME","ALGORITHMS"]},{"name":"Negative numbers","uid":"33789c02e7e07041","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing permute_a_palindrome (positive)","uid":"864ee426bf422b09","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing 'thirt' function","uid":"a5961784f4ddfa34","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing tickets function","uid":"d20d06b45fb65ddb","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","GAMES","ALGORITHMS"]},{"name":"Testing alphanumeric function","uid":"19443f8320b2694c","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing anagrams function","uid":"d2acdc5e027859f4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing sum_of_intervals function","uid":"99e95613ed424b35","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","INTEGERS","ARITHMETIC","AGGREGATIONS","ALGORITHMS"]},{"name":"Simple test for valid parentheses","uid":"4990a9f9fb7d9809","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing length function where head = None","uid":"e7ac97a954c5e722","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES"]},{"name":"Should return 'Fail!'s","uid":"9eaae816682ea6e3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing solution function","uid":"913fbd5c2da31308","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","STRING","ALGORITHMS"]},{"name":"Test with empty string","uid":"2a3aa78afffa487b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"a and b are equal","uid":"cef1ed2aef537de7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Non is expected","uid":"f4915582d5908ed3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'vaporcode' function","uid":"52f852c4238fea22","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"test_josephus_survivor","uid":"e08a8a15da9b3ad","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","LISTS","NUMBERS","ALGORITHMS","DATA STRUCTURES","ARRAYS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Negative test cases for is_prime function testing","uid":"ad3e6b6eddb975ef","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILS","PRIME NUMBERS","PRIMES"]},{"name":"test_permutations","uid":"5a5d0954bb249b69","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PERMUTATIONS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"'multiply' function verification with one element list","uid":"6f178467aa4ed9b7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing 'factorial' function","uid":"25c9ba69d5ac48c6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing two_decimal_places function","uid":"8db7c8bf0abe07bc","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing the 'unique_in_order' function","uid":"b3654581f89b5576","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","ALGORITHMS"]},{"name":"All chars are in upper case","uid":"da807d1d651bf07b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing Warrior class >>> tom","uid":"d6520bfb9bc036e4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES","ALGORITHMS","RULES"]},{"name":"Find the int that appears an odd number of times","uid":"4cc7d24b84024142","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"String with no duplicate chars","uid":"1d2cfb77eef4360e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'save' function: positive","uid":"f0d7d5d837d1a81d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing toJadenCase function (positive)","uid":"ec0c7de9a70a5f5e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing make_class function","uid":"a088624abb606e0e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","GAMES","ALGORITHMS"]},{"name":"Testing check_for_factor function: positive flow","uid":"b40f27be3da7edd7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing calculate function","uid":"b0395834a1dc7266","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Square numbers (positive)","uid":"c8680b20dd7e19d5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing calc_combinations_per_row function","uid":"d9d827d0af3ba710","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"test_solution_basic","uid":"6c1e65f294db5f89","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Non square numbers (negative)","uid":"a1e3818ccb62ed24","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"test_solution_big","uid":"4df2e31ca734bf47","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'has_subpattern' (part 2) function","uid":"52e55a2445119fdd","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Testing 'save' function: negative","uid":"69d8ca152b73c452","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","DATA STRUCTURES","ARRAYS"]},{"name":"Testing share_price function","uid":"24f0384efd85ae74","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FORMATTING","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing toJadenCase function (negative)","uid":"e4473b95f40f5c92","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ARRAYS"]},{"name":"Testing list_squared function","uid":"f39847014d01db85","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","OPTIMIZATION","ALGORITHMS","ARRAYS"]},{"name":"Large lists","uid":"f807c10786110eac","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing Potion class","uid":"25eb791ee007f15b","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing calc function","uid":"26189d3cfda1b8d1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","EXPRESSIONS","FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ALGORITHMS","OPERATORS","PARSING STRINGS"]},{"name":"Testing century function","uid":"2a82791553e70088","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","DATES/TIME","BASIC LANGUAGE FEATURES","ALGORITHMS"]},{"name":"Testing Walker class - position property from positive grids","uid":"eb94d03877c16bb4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing period_is_late function (positive)","uid":"5503b0de9149b0f0","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing calculate_damage function","uid":"4223e436b2847599","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","GAMES","PUZZLES","BASIC LANGUAGE FEATURES","FUNCTIONS","ARRAYS"]},{"name":"Testing 'DefaultList' class: __getitem__","uid":"9e6eb35888cc4f59","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Wolf at the beginning of the queue","uid":"9e884f6ea55b7c35","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"Testing 'DefaultList' class: remove","uid":"3ff093181cede851","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing checkchoose function","uid":"c9c9a6a75f3a249f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Verify that greet function returns the proper message","uid":"6b2ccbd851ec600","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CONDITIONAL STATEMENTS","FUNDAMENTALS","CONTROL FLOW"]},{"name":"Testing valid_parentheses function","uid":"ee5910cfe65a88ee","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["UTILITIES","VALIDATION","ALGORITHMS"]},{"name":"Testing hoop_count function (negative test case)","uid":"ce6714fc18aff8ec","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"AND logical operator","uid":"7250652c2d8bbae5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing 'feast' function","uid":"5364303890f7a5a1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS"]},{"name":"Testing Sudoku class","uid":"f51b45f6ebc18bdf","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","VALIDATION","PUZZLES","ALGORITHMS","ARRAYS"]},{"name":"powers function should return an array of unique numbers","uid":"823dff07664aaa4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: extend","uid":"f56ae5fa4f278c43","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"get_size function tests","uid":"1cc5ce778c99d98","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","ALGEBRA","ALGORITHMS","GEOMETRY"]},{"name":"Testing the 'find_missing_number' function","uid":"8878dccf56d36ba6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","NUMBERS","PERFORMANCE","ALGORITHMS"]},{"name":"XOR logical operator","uid":"46352cf5111d5c61","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing binary_to_string function","uid":"1cbe6a610fbdfd6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["CHARACTER ENCODINGS","STRINGS","FUNDAMENTALS","FORMATS","BINARY","ASCII"]},{"name":"Testing swap_values function","uid":"7e7534020c406c41","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["BUGS","FUNDAMENTALS","ARRAYS"]},{"name":"Zero","uid":"30779503c72bcec6","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing first_non_repeating_letter function","uid":"4d53eb58d77047e8","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","SEARCH","ALGORITHMS"]},{"name":"Testing check_exam function","uid":"23b533c70baf95c9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","NUMBERS","BASIC LANGUAGE FEATURES","ARRAYS"]},{"name":"Testing invite_more_women function (negative)","uid":"32eaf956310a89b7","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]},{"name":"Testing the 'sort_array' function","uid":"4e3f7ea473e691d3","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"a an b are positive numbers","uid":"91c1d8a1fc37f84","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ALGORITHMS"]},{"name":"Testing agents_cleanup function","uid":"1fb0e4ddfae0bf06","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"95500b18da61d76","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","STRING FORMATTING","ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"5af3592e93b232bc","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","ALGORITHMS"]},{"name":"Testing shark function (positive)","uid":"a4cb6a94c77f28ce","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing easy_line function exception message","uid":"87b0b5de93d5cb12","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing create_city_map function","uid":"be79a08ed18e426","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"OR logical operator","uid":"2a6bb93adc2b9500","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Wolf at the end of the queue","uid":"f8789af2e0cead9e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","CONTROL FLOW","LOOPS","ARRAYS"]},{"name":"test_triangle","uid":"96938210802b960f","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":3,"retriesStatusChange":false,"parameters":[],"tags":["Algorithms","Logic","Strings"]},{"name":"All chars are in lower case","uid":"5bee7e36f6e76857","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","UTILITIES","ALGORITHMS"]},{"name":"Testing 'DefaultList' class: insert","uid":"67535419d885cbd9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"Testing 'numericals' function","uid":"db9b592f660c3c08","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["PERFORMANCE","GAMES","PUZZLES","ALGORITHMS"]},{"name":"Testing 'sum_triangular_numbers' with big number as an input","uid":"f06328bb4646abe9","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","ARITHMETIC","ALGORITHMS"]},{"name":"Testing compute_ranks","uid":"213536a8a5597e91","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":2,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","SORTING","ALGORITHMS","ARRAYS"]},{"name":"Testing Walker class - position property from negative grids","uid":"a81b8ca7a7877717","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":true,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Two smallest numbers in the start of the list","uid":"2fa689144ccb2725","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Should return 'I smell a series!'","uid":"d518579b8137712e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","REFACTORING","ARRAYS"]},{"name":"Testing 'has_subpattern' (part 3) function","uid":"b4c3bd7788c9f57d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","ADVANCED LANGUAGE FEATURES","DECLARATIVE PROGRAMMING","REGULAR EXPRESSIONS"]},{"name":"Non square numbers (negative)","uid":"eb8f6057b9598daa","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","MATH"]},{"name":"Testing next_smaller function","uid":"c1f90fc4edd70bea","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","STRINGS","NUMBERS","INTEGERS","ALGORITHMS"]},{"name":"Testing to_table function","uid":"ece5bd16ef8bbe52","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"Testing 'DefaultList' class: pop","uid":"a6a651d904577cf4","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["OBJECT-ORIENTED PROGRAMMING","FUNDAMENTALS","CLASSES","BASIC LANGUAGE FEATURES"]},{"name":"test_line_negative","uid":"482cc1b462231f44","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"skipped","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS","@pytest.mark.skip(reason='The solution is not ready')"]},{"name":"Testing 'count_sheeps' function: bad input","uid":"b5ba84846c075db5","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","ARRAYS"]},{"name":"Testing epidemic function","uid":"8572ffe92ddcaa11","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS"]},{"name":"Testing 'snail' function","uid":"43a52f18fb3b8136","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["LISTS","ALGORITHMS","ARRAYS"]},{"name":"Testing largestPower function","uid":"218b156daee27f08","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["MATHEMATICS","FUNDAMENTALS","NUMBERS","CONTROL FLOW","BASIC LANGUAGE FEATURES","ALGORITHMS","LOOPS"]},{"name":"Testing remove_char function","uid":"6d917e3e4d702f23","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","FUNDAMENTALS","BASIC LANGUAGE FEATURES"]},{"name":"Testing two_decimal_places function","uid":"5647d5db4078d707","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","FUNDAMENTALS","NUMBERS","ALGORITHMS"]},{"name":"Testing validSolution","uid":"6c8559b634a76bd8","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["VALIDATION","ALGORITHMS","DATA STRUCTURES"]},{"name":"String with no duplicate chars","uid":"3d9d773987a3ac09","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FORMATTING","STRINGS","FUNDAMENTALS","ALGORITHMS"]},{"name":"Simple test for invalid parentheses","uid":"f55783c4fa90131e","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":0,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","PARSING","ALGORITHMS"]},{"name":"Testing array_diff function","uid":"80b7e762ad299367","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["FUNDAMENTALS","LISTS","ARRAYS"]},{"name":"String alphabet chars and spaces","uid":"f83b86d7cbc0ffa1","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["ALGORITHMS"]},{"name":"Testing 'solution' function","uid":"8da8c6de16bb179d","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["STRINGS","ALGORITHMS"]},{"name":"Testing invite_more_women function (positive)","uid":"4a970025f2147b3a","parentUid":"0e56f73b58e144903dc2f57934b7f456","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"flaky":false,"newFailed":false,"newPassed":false,"newBroken":false,"retriesCount":4,"retriesStatusChange":false,"parameters":[],"tags":["GAMES","PUZZLES"]}],"uid":"0e56f73b58e144903dc2f57934b7f456"}],"uid":"8d0045e9f8f0b03357cd74b2daafdbad"}]} \ No newline at end of file diff --git a/allure-report/export/influxDbData.txt b/allure-report/export/influxDbData.txt index f6f0447be8a..adbe75f08c2 100644 --- a/allure-report/export/influxDbData.txt +++ b/allure-report/export/influxDbData.txt @@ -1,13 +1,13 @@ -launch_status failed=0 1724813816000000000 -launch_status broken=0 1724813816000000000 -launch_status passed=209 1724813816000000000 -launch_status skipped=13 1724813816000000000 -launch_status unknown=0 1724813816000000000 -launch_time duration=1655595 1724813816000000000 -launch_time min_duration=0 1724813816000000000 -launch_time max_duration=648 1724813816000000000 -launch_time sum_duration=1276 1724813816000000000 -launch_time start=1724733474194 1724813816000000000 -launch_time stop=1724735129789 1724813816000000000 -launch_retries retries=219 1724813816000000000 -launch_retries run=222 1724813816000000000 +launch_status failed=0 1733030168000000000 +launch_status broken=0 1733030168000000000 +launch_status passed=221 1733030168000000000 +launch_status skipped=11 1733030168000000000 +launch_status unknown=0 1733030168000000000 +launch_time duration=8296626985 1733030168000000000 +launch_time min_duration=0 1733030168000000000 +launch_time max_duration=695 1733030168000000000 +launch_time sum_duration=1114 1733030168000000000 +launch_time start=1724733474194 1733030168000000000 +launch_time stop=1733030101179 1733030168000000000 +launch_retries retries=882 1733030168000000000 +launch_retries run=232 1733030168000000000 diff --git a/allure-report/export/prometheusData.txt b/allure-report/export/prometheusData.txt index 4b24a3d00a5..bbdd01207e3 100644 --- a/allure-report/export/prometheusData.txt +++ b/allure-report/export/prometheusData.txt @@ -1,13 +1,13 @@ launch_status_failed 0 launch_status_broken 0 -launch_status_passed 209 -launch_status_skipped 13 +launch_status_passed 221 +launch_status_skipped 11 launch_status_unknown 0 -launch_time_duration 1655595 +launch_time_duration 8296626985 launch_time_min_duration 0 -launch_time_max_duration 648 -launch_time_sum_duration 1276 +launch_time_max_duration 695 +launch_time_sum_duration 1114 launch_time_start 1724733474194 -launch_time_stop 1724735129789 -launch_retries_retries 219 -launch_retries_run 222 +launch_time_stop 1733030101179 +launch_retries_retries 882 +launch_retries_run 232 diff --git a/allure-report/history/duration-trend.json b/allure-report/history/duration-trend.json index 42d0e4b56cb..1149e3d550b 100644 --- a/allure-report/history/duration-trend.json +++ b/allure-report/history/duration-trend.json @@ -1 +1 @@ -[{"data":{"duration":1655595}},{"data":{"duration":6277517630}},{"data":{"duration":6234717799}},{"data":{"duration":4760882662}},{"data":{"duration":4393028053}},{"data":{"duration":4392634474}},{"data":{"duration":4233561443}},{"data":{"duration":4044303027}},{"data":{"duration":4042851547}},{"data":{"duration":4041072223}},{"data":{"duration":3966081176}},{"data":{"duration":3966081176}},{"data":{"duration":2482854152}},{"data":{"duration":2325934223}},{"data":{"duration":1181987141}},{"data":{"duration":677478359}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}},{"data":{"duration":5253}}] \ No newline at end of file +[{"data":{"duration":8296626985}},{"data":{"duration":8030747183}},{"data":{"duration":7694722309}},{"data":{"duration":1655595}},{"data":{"duration":1655595}},{"data":{"duration":6277517630}},{"data":{"duration":6234717799}},{"data":{"duration":4760882662}},{"data":{"duration":4393028053}},{"data":{"duration":4392634474}},{"data":{"duration":4233561443}},{"data":{"duration":4044303027}},{"data":{"duration":4042851547}},{"data":{"duration":4041072223}},{"data":{"duration":3966081176}},{"data":{"duration":3966081176}},{"data":{"duration":2482854152}},{"data":{"duration":2325934223}},{"data":{"duration":1181987141}},{"data":{"duration":677478359}}] \ No newline at end of file diff --git a/allure-report/history/history-trend.json b/allure-report/history/history-trend.json index d99a7683cdf..478bb43717a 100644 --- a/allure-report/history/history-trend.json +++ b/allure-report/history/history-trend.json @@ -1 +1 @@ -[{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":206,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":204,"unknown":0,"total":219}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":203,"unknown":0,"total":218}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":201,"unknown":0,"total":215}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":200,"unknown":0,"total":213}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":198,"unknown":0,"total":211}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":197,"unknown":0,"total":210}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":192,"unknown":0,"total":205}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":191,"unknown":0,"total":204}},{"data":{"failed":0,"broken":0,"skipped":9,"passed":190,"unknown":0,"total":199}}] \ No newline at end of file +[{"data":{"failed":0,"broken":0,"skipped":11,"passed":221,"unknown":0,"total":232}},{"data":{"failed":0,"broken":0,"skipped":11,"passed":216,"unknown":0,"total":227}},{"data":{"failed":0,"broken":0,"skipped":11,"passed":215,"unknown":0,"total":226}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":206,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":204,"unknown":0,"total":219}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":203,"unknown":0,"total":218}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":201,"unknown":0,"total":215}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":200,"unknown":0,"total":213}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":198,"unknown":0,"total":211}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":197,"unknown":0,"total":210}}] \ No newline at end of file diff --git a/allure-report/history/history.json b/allure-report/history/history.json index 68febc92b07..438566ff74e 100644 --- a/allure-report/history/history.json +++ b/allure-report/history/history.json @@ -1 +1 @@ -{"2a488c8a592f99c42193093dceadfd0d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6d4216edcb2d933a","status":"passed","time":{"start":1596047923984,"stop":1596047923985,"duration":1}},{"uid":"76daaf401c64bb29","status":"passed","time":{"start":1596005124068,"stop":1596005124068,"duration":0}},{"uid":"d6e803d51266cd9a","status":"passed","time":{"start":1594531288919,"stop":1594531288919,"duration":0}},{"uid":"6b6844f123edcc4c","status":"passed","time":{"start":1594163434410,"stop":1594163434411,"duration":1}},{"uid":"f07476a9ca5f2aae","status":"passed","time":{"start":1594163040798,"stop":1594163040798,"duration":0}}]},"f51ecfb2c4460f518b2155a78436a09d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"9649de1e84bdf76637c00a153a4eb0b9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":24,"unknown":0,"total":24},"items":[{"uid":"dfa0ea4b9f1fa54a","status":"passed","time":{"start":1596047920385,"stop":1596047920388,"duration":3}},{"uid":"2967593e7c52bf8c","status":"passed","time":{"start":1596005120289,"stop":1596005120292,"duration":3}},{"uid":"9343dbf3101090cf","status":"passed","time":{"start":1594531285248,"stop":1594531285249,"duration":1}},{"uid":"52450f3d385118b1","status":"passed","time":{"start":1594163430717,"stop":1594163430718,"duration":1}},{"uid":"b6ed8732c80611f1","status":"passed","time":{"start":1594163036944,"stop":1594163036947,"duration":3}}]},"cff1b92fe15b026161a65b578563f84b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":7,"unknown":0,"total":7},"items":[{"uid":"ec00714c45249a61","status":"passed","time":{"start":1596047920455,"stop":1596047920457,"duration":2}},{"uid":"159bf68d3f421b2c","status":"passed","time":{"start":1596005120355,"stop":1596005120356,"duration":1}},{"uid":"76a637f138de5bec","status":"passed","time":{"start":1594531285294,"stop":1594531285295,"duration":1}},{"uid":"8c8b3bd4256b830","status":"passed","time":{"start":1594163430761,"stop":1594163430762,"duration":1}},{"uid":"a895b530ff0a0810","status":"passed","time":{"start":1594163036999,"stop":1594163037002,"duration":3}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"7414d0b98bcb019741716816e3be1de6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":31,"unknown":0,"total":31},"items":[{"uid":"93884a95bea2ee41","status":"passed","time":{"start":1596047923664,"stop":1596047923665,"duration":1}},{"uid":"fd7e550560ccaf94","status":"passed","time":{"start":1596005123695,"stop":1596005123697,"duration":2}},{"uid":"60648aed2e16811e","status":"passed","time":{"start":1594531288608,"stop":1594531288610,"duration":2}},{"uid":"36f076fc275bb814","status":"passed","time":{"start":1594163434050,"stop":1594163434051,"duration":1}},{"uid":"ecec029d0af460c","status":"passed","time":{"start":1594163040529,"stop":1594163040530,"duration":1}}]},"c3347b0ee9b14d599cb7e273cdb897bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"d55210ca98ef22ea","status":"passed","time":{"start":1596047919473,"stop":1596047919474,"duration":1}},{"uid":"c656650d77df17ff","status":"passed","time":{"start":1596005119488,"stop":1596005119488,"duration":0}},{"uid":"63a2bacffa60a113","status":"passed","time":{"start":1594531284399,"stop":1594531284400,"duration":1}},{"uid":"4fdfdcd11ab360ff","status":"passed","time":{"start":1594163429953,"stop":1594163429954,"duration":1}},{"uid":"1fe21e60ae97ff1","status":"passed","time":{"start":1594163036147,"stop":1594163036148,"duration":1}}]},"49af4a8ebdc007fac4acbc085138b80e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"db1d961947ba50c55f7273e4eb265602":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c32482be894dbe32","status":"passed","time":{"start":1596047919549,"stop":1596047919552,"duration":3}},{"uid":"d8a319c1c82e58cb","status":"passed","time":{"start":1596005119551,"stop":1596005119553,"duration":2}},{"uid":"5beca2f35d69dd5b","status":"passed","time":{"start":1594531284452,"stop":1594531284453,"duration":1}},{"uid":"ade3b84e9d3a3726","status":"passed","time":{"start":1594163430004,"stop":1594163430006,"duration":2}},{"uid":"ef141e8efa89b28f","status":"passed","time":{"start":1594163036218,"stop":1594163036219,"duration":1}}]},"bb3964d396ef802dceada9777cff8e45":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"0c5a9947fdd01d236c17811f6cecd204":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"768a7efdf473c3d3","status":"passed","time":{"start":1596047924715,"stop":1596047924716,"duration":1}},{"uid":"1915789dfbb56fed","status":"passed","time":{"start":1596005124875,"stop":1596005124876,"duration":1}},{"uid":"7edd927b315b8654","status":"passed","time":{"start":1594531289740,"stop":1594531289741,"duration":1}},{"uid":"d0acdbaff0a75e84","status":"passed","time":{"start":1594163435137,"stop":1594163435138,"duration":1}},{"uid":"1d0518f8800e0ba9","status":"passed","time":{"start":1594163041557,"stop":1594163041558,"duration":1}}]},"e5c7abe0fcf3b79049d906f50808feb6":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"620b2589fb870406","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"ed63cab09a5a21abc4139e6751f28e54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"78d13a2d0abbaf1a1f243a198f76fff5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":18,"unknown":0,"total":18},"items":[{"uid":"81aec115e9f44479","status":"passed","time":{"start":1596047920341,"stop":1596047920343,"duration":2}},{"uid":"2a076499c238a323","status":"passed","time":{"start":1596005120241,"stop":1596005120243,"duration":2}},{"uid":"9440087e3643fa9","status":"passed","time":{"start":1594531285205,"stop":1594531285207,"duration":2}},{"uid":"60dbc7d8b53ef5b6","status":"passed","time":{"start":1594163430682,"stop":1594163430684,"duration":2}},{"uid":"f7c227de7bf7d5f8","status":"passed","time":{"start":1594163036906,"stop":1594163036907,"duration":1}}]},"b54c9296974c5f11c9729ae250dcc661":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1f538cc051c14271","status":"passed","time":{"start":1596047924273,"stop":1596047924274,"duration":1}},{"uid":"8b162058e3797231","status":"passed","time":{"start":1596005124376,"stop":1596005124376,"duration":0}},{"uid":"9f45ffa650a9c208","status":"passed","time":{"start":1594531289208,"stop":1594531289209,"duration":1}},{"uid":"7587b1a31f39a9e6","status":"passed","time":{"start":1594163434704,"stop":1594163434704,"duration":0}},{"uid":"87702ceafb3be1d2","status":"passed","time":{"start":1594163041094,"stop":1594163041095,"duration":1}}]},"2fc0cf409058113d339743775fa3158e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"91ff78dc5a767b91","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"b71e871d53b429aef63593ea1f41c8bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"3b2ebb1924dbc4e6a73dc5dda19dd323":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"e59fe81d3d5b6631d5afa04dfa467ab0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"31d387276325aa8","status":"passed","time":{"start":1596047920565,"stop":1596047920567,"duration":2}},{"uid":"ded59b0be412649b","status":"passed","time":{"start":1596005120464,"stop":1596005120466,"duration":2}},{"uid":"64b65df6d3ccc09c","status":"passed","time":{"start":1594531285407,"stop":1594531285408,"duration":1}},{"uid":"bc547d548a8e43fb","status":"passed","time":{"start":1594163430867,"stop":1594163430868,"duration":1}},{"uid":"d7a8e6dfca27b15d","status":"passed","time":{"start":1594163037111,"stop":1594163037112,"duration":1}}]},"10a57706311105e48a11addadcd6ba5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ffe7f31d081d3160","status":"passed","time":{"start":1596047923277,"stop":1596047923278,"duration":1}},{"uid":"4f916a7880edd6e3","status":"passed","time":{"start":1596005123276,"stop":1596005123277,"duration":1}},{"uid":"9af0e99812e0efbc","status":"passed","time":{"start":1594531288206,"stop":1594531288207,"duration":1}},{"uid":"8e4295c80784509e","status":"passed","time":{"start":1594163433734,"stop":1594163433735,"duration":1}},{"uid":"e97fd44623e301e1","status":"passed","time":{"start":1594163040204,"stop":1594163040205,"duration":1}}]},"fdc9a1360d77d4313e2885c36e2d5f96":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3e286d88c47292eb","status":"passed","time":{"start":1596047923442,"stop":1596047923444,"duration":2}},{"uid":"a8fa86dbcff7a636","status":"passed","time":{"start":1596005123439,"stop":1596005123442,"duration":3}},{"uid":"bd172034ceeb6494","status":"passed","time":{"start":1594531288354,"stop":1594531288356,"duration":2}},{"uid":"27585b338e4744d3","status":"passed","time":{"start":1594163433849,"stop":1594163433850,"duration":1}},{"uid":"e8335448c8a98cb2","status":"passed","time":{"start":1594163040334,"stop":1594163040336,"duration":2}}]},"b253b4766bea2d3475c5b21dfa1fbf46":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":28,"unknown":0,"total":28},"items":[{"uid":"9162dc5b0dddeb2c","status":"passed","time":{"start":1596047919624,"stop":1596047919625,"duration":1}},{"uid":"54a57611d54057c1","status":"passed","time":{"start":1596005119605,"stop":1596005119606,"duration":1}},{"uid":"1e8d6a0f9e116fa1","status":"passed","time":{"start":1594531284504,"stop":1594531284505,"duration":1}},{"uid":"c08e012abdb786d8","status":"passed","time":{"start":1594163430051,"stop":1594163430052,"duration":1}},{"uid":"54960190d043c07f","status":"passed","time":{"start":1594163036270,"stop":1594163036271,"duration":1}}]},"164912053c696e73c7be4b3a14287ecc":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"e5ac2209dd79eabb","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"0906853824abbb5b2f8dc3ebbef91492":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"eb35bcc5ca774b83","status":"passed","time":{"start":1596047924568,"stop":1596047924570,"duration":2}},{"uid":"76439dea2a9d65ae","status":"passed","time":{"start":1596005124678,"stop":1596005124679,"duration":1}},{"uid":"2941d7d2d263712e","status":"passed","time":{"start":1594531289560,"stop":1594531289561,"duration":1}},{"uid":"4ca4e502466ccc51","status":"passed","time":{"start":1594163434990,"stop":1594163434991,"duration":1}},{"uid":"56dfabc63673070e","status":"passed","time":{"start":1594163041387,"stop":1594163041388,"duration":1}}]},"4a2df53975623c10d30ec1c6932ba04a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5e4b0e05a0862f7e","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"ed6c1e5f0eb38874fc66b7fa53f68e12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"296c843106f019f44f0537c523c42ad4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4f6f89be9d7eaeb5","status":"passed","time":{"start":1596047919501,"stop":1596047919506,"duration":5}},{"uid":"66557685192c1e8","status":"passed","time":{"start":1596005119513,"stop":1596005119515,"duration":2}},{"uid":"9dc6fbc86d74868e","status":"passed","time":{"start":1594531284100,"stop":1594531284102,"duration":2}},{"uid":"c0f9f375232f8198","status":"passed","time":{"start":1594163429670,"stop":1594163429671,"duration":1}},{"uid":"6a636465a9f40657","status":"passed","time":{"start":1594163035837,"stop":1594163035838,"duration":1}}]},"687e7d979daec216412b2e6518d7f22d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7a17f147f5f76599","status":"passed","time":{"start":1596047924461,"stop":1596047924462,"duration":1}},{"uid":"c7a632f72bf7c2b9","status":"passed","time":{"start":1596005124564,"stop":1596005124565,"duration":1}},{"uid":"a9c637eaa5b324ca","status":"passed","time":{"start":1594531289423,"stop":1594531289424,"duration":1}},{"uid":"1c51d02602d12c50","status":"passed","time":{"start":1594163434880,"stop":1594163434881,"duration":1}},{"uid":"a8e3b7db64e2634","status":"passed","time":{"start":1594163041271,"stop":1594163041272,"duration":1}}]},"429c2bf738c7d46e53c9a2e5226d6649":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"1867e530fd2d8f6e72a7be68dfaf6d29":{"statistic":{"failed":0,"broken":0,"skipped":11,"passed":0,"unknown":0,"total":11},"items":[{"uid":"1e8ff0649323ef1e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919229,"stop":1596047919229,"duration":0}},{"uid":"30f80a7f1496e991","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119257,"stop":1596005119257,"duration":0}},{"uid":"7ccf9ca367f43634","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284164,"stop":1594531284164,"duration":0}},{"uid":"d8ed5b14959d0b40","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429732,"stop":1594163429732,"duration":0}},{"uid":"d51ed0de8a59c6a2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035916,"stop":1594163035916,"duration":0}}]},"29249ea89f0081dda70899f3290f857b":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"c322e80c6cd8da83","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"83f89c47687232e4e6df9cb000215f62":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a7d507d283840d7b","status":"passed","time":{"start":1596047924259,"stop":1596047924260,"duration":1}},{"uid":"78075941f67b4dd7","status":"passed","time":{"start":1596005124363,"stop":1596005124364,"duration":1}},{"uid":"518c3d7b9812dec6","status":"passed","time":{"start":1594531289188,"stop":1594531289189,"duration":1}},{"uid":"ad112bf95b7a9a0c","status":"passed","time":{"start":1594163434690,"stop":1594163434691,"duration":1}},{"uid":"52d2c99e6dc830cf","status":"passed","time":{"start":1594163041080,"stop":1594163041080,"duration":0}}]},"4e553d5e3ff5fc5c21a746a843af96e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"f8c8e1115bda1d1060b9b125be217311":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"675c2d9214d0c9ee","status":"passed","time":{"start":1596047923327,"stop":1596047923328,"duration":1}},{"uid":"c51894693dbb963f","status":"passed","time":{"start":1596005123333,"stop":1596005123334,"duration":1}},{"uid":"fa68cff2aa65baac","status":"passed","time":{"start":1594531288250,"stop":1594531288251,"duration":1}},{"uid":"b5fffa240ef9f697","status":"passed","time":{"start":1594163433772,"stop":1594163433773,"duration":1}},{"uid":"7a31ceac1c1f83f4","status":"passed","time":{"start":1594163040249,"stop":1594163040250,"duration":1}}]},"f47162ca0e9bacec154c9094fd33e635":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"5d0f5e220c2579103119e57300b46215":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"fc16fe6f8e2f2f0dd1e7d650d0ec62aa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"40c3fd65f9a485e9","status":"passed","time":{"start":1596047920549,"stop":1596047920552,"duration":3}},{"uid":"621761b8fc0dd8ca","status":"passed","time":{"start":1596005120447,"stop":1596005120451,"duration":4}},{"uid":"fe4f3a24444bbe1d","status":"passed","time":{"start":1594531285394,"stop":1594531285396,"duration":2}},{"uid":"c6d5e06d775f57aa","status":"passed","time":{"start":1594163430850,"stop":1594163430853,"duration":3}},{"uid":"2573c8d3112ec4","status":"passed","time":{"start":1594163037099,"stop":1594163037101,"duration":2}}]},"5821e6355bce2a3bf46d4ce3e55de034":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"f23e1d1b6981955bbbdda32c75b7cdd8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b575f441a3da50d","status":"passed","time":{"start":1596047919219,"stop":1596047919222,"duration":3}},{"uid":"11040cc92103f99","status":"passed","time":{"start":1596005119251,"stop":1596005119252,"duration":1}},{"uid":"bb14985078641cb3","status":"passed","time":{"start":1594531284157,"stop":1594531284158,"duration":1}},{"uid":"d227a6939d94be03","status":"passed","time":{"start":1594163429725,"stop":1594163429726,"duration":1}},{"uid":"8acd8d27784cac00","status":"passed","time":{"start":1594163035908,"stop":1594163035910,"duration":2}}]},"cddeb37c6d892aa5b18e595a7d4e3282":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dbb4b23864e9a8fd","status":"passed","time":{"start":1596047924544,"stop":1596047924546,"duration":2}},{"uid":"eeeb3712026df28f","status":"passed","time":{"start":1596005124651,"stop":1596005124653,"duration":2}},{"uid":"18f1cfdcabf3e717","status":"passed","time":{"start":1594531289531,"stop":1594531289532,"duration":1}},{"uid":"1e68f7b24ea3fb56","status":"passed","time":{"start":1594163434965,"stop":1594163434966,"duration":1}},{"uid":"bbb239c6b09c447f","status":"passed","time":{"start":1594163041363,"stop":1594163041364,"duration":1}}]},"059761e477dad0853fa6e0ed172a78f0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"63cbfe00daba1c69","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"a5e357785cf7a1184adb35707a6c5d0c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"af3c309699fc2b8b","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}}]},"84d7f0a1c2a345b29fa2e222a5ed7ee5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7f890ca68cdfc481","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}}]},"21739eee721a124a84e5414945df03e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"3291f911facce5382ac0029b17def0c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f669ee5da4bf50b4","status":"passed","time":{"start":1596047923456,"stop":1596047923456,"duration":0}},{"uid":"6d82d06e3fee3c1e","status":"passed","time":{"start":1596005123455,"stop":1596005123455,"duration":0}},{"uid":"9d4991fb42a21fc7","status":"passed","time":{"start":1594531288366,"stop":1594531288367,"duration":1}},{"uid":"e16589a7600c691","status":"passed","time":{"start":1594163433860,"stop":1594163433861,"duration":1}},{"uid":"e564a1bcc85e43df","status":"passed","time":{"start":1594163040347,"stop":1594163040348,"duration":1}}]},"bdd7a9084eedc74da67154030d95cad9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f343a1d7b70b8e3f","status":"passed","time":{"start":1596047919192,"stop":1596047919194,"duration":2}},{"uid":"8fec8172d6a3d6cc","status":"passed","time":{"start":1596005119232,"stop":1596005119234,"duration":2}},{"uid":"3e5e701c4e03ac36","status":"passed","time":{"start":1594531284137,"stop":1594531284139,"duration":2}},{"uid":"248f69e516e74046","status":"passed","time":{"start":1594163429702,"stop":1594163429704,"duration":2}},{"uid":"cfc326efff7de22","status":"passed","time":{"start":1594163035884,"stop":1594163035886,"duration":2}}]},"128bd70e221c2c2b932b5e8d4fdb22c0":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"6827fd264cb4d263","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"06956afd8355f6465598df890d5ec8f8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c536f7da42be3b4b","status":"passed","time":{"start":1596047924111,"stop":1596047924112,"duration":1}},{"uid":"61d711650f6074a1","status":"passed","time":{"start":1596005124207,"stop":1596005124208,"duration":1}},{"uid":"731d3bdae0232e7c","status":"passed","time":{"start":1594531289046,"stop":1594531289047,"duration":1}},{"uid":"a675b6909b626ac","status":"passed","time":{"start":1594163434551,"stop":1594163434551,"duration":0}},{"uid":"1ad48475f5f0b2ec","status":"passed","time":{"start":1594163040936,"stop":1594163040937,"duration":1}}]},"f5aad0d6d87c18c71b470c7dcc7528e2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"67e6884b53cc3127","status":"passed","time":{"start":1596047924056,"stop":1596047924057,"duration":1}},{"uid":"c9c5bd5e0813b176","status":"passed","time":{"start":1596005124153,"stop":1596005124154,"duration":1}},{"uid":"5504d7c7e3760736","status":"passed","time":{"start":1594531288996,"stop":1594531288997,"duration":1}},{"uid":"eacbf542887c2ff9","status":"passed","time":{"start":1594163434498,"stop":1594163434499,"duration":1}},{"uid":"569a9059b2139b43","status":"passed","time":{"start":1594163040890,"stop":1594163040890,"duration":0}}]},"094915dd36d829c22ed2375a32962ac5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"79c7b93ec42d8a40bc531e50834720ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"9cc20e8c3c9bafa6f94ecaef044db1be":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c3880c16fa84744e","status":"passed","time":{"start":1596047920404,"stop":1596047920406,"duration":2}},{"uid":"7e21b847450788d6","status":"passed","time":{"start":1596005120303,"stop":1596005120305,"duration":2}},{"uid":"f0ba75b6d92b2d99","status":"passed","time":{"start":1594531285258,"stop":1594531285259,"duration":1}},{"uid":"9f5807594e677cb2","status":"passed","time":{"start":1594163430727,"stop":1594163430728,"duration":1}},{"uid":"7dce11408515f2e0","status":"passed","time":{"start":1594163036960,"stop":1594163036961,"duration":1}}]},"75857b885e27e2739e90cf1095eb0b4f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3f1719afef6aa25a","status":"passed","time":{"start":1596047924684,"stop":1596047924684,"duration":0}},{"uid":"792ab8ddfe994d14","status":"passed","time":{"start":1596005124826,"stop":1596005124828,"duration":2}},{"uid":"52b3fcf14c1585dd","status":"passed","time":{"start":1594531289701,"stop":1594531289702,"duration":1}},{"uid":"dd1b39afd707b802","status":"passed","time":{"start":1594163435104,"stop":1594163435105,"duration":1}},{"uid":"abd18a32407e5a49","status":"passed","time":{"start":1594163041521,"stop":1594163041522,"duration":1}}]},"804d83b9e2afe34ff3ad716bee4ea2c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ed321d136f7005fa","status":"passed","time":{"start":1596047923785,"stop":1596047923786,"duration":1}},{"uid":"1943889a3a54c45e","status":"passed","time":{"start":1596005123818,"stop":1596005123819,"duration":1}},{"uid":"6281ff92aff92119","status":"passed","time":{"start":1594531288732,"stop":1594531288732,"duration":0}},{"uid":"5562ab223b5c65b7","status":"passed","time":{"start":1594163434189,"stop":1594163434190,"duration":1}},{"uid":"204566d4f118bd6e","status":"passed","time":{"start":1594163040625,"stop":1594163040626,"duration":1}}]},"3225e52f0799b8e8454699743228b708":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":20,"unknown":0,"total":20},"items":[{"uid":"697d09579cde5c98","status":"passed","time":{"start":1596047919141,"stop":1596047919143,"duration":2}},{"uid":"6e7cacb819d6e3b2","status":"passed","time":{"start":1596005119196,"stop":1596005119198,"duration":2}},{"uid":"8784e953754c191a","status":"passed","time":{"start":1594531284087,"stop":1594531284089,"duration":2}},{"uid":"2660cb9775e0d4cc","status":"passed","time":{"start":1594163429658,"stop":1594163429659,"duration":1}},{"uid":"e4a2e4942d112e9b","status":"passed","time":{"start":1594163035821,"stop":1594163035823,"duration":2}}]},"5e3d4a7b89a7ecee6b57c2383b63527b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"19f05ac7c7dd75a1836cbb7e42860db3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e50f32fc1e57c2b","status":"passed","time":{"start":1596047924237,"stop":1596047924238,"duration":1}},{"uid":"8d742ea4d41adf53","status":"passed","time":{"start":1596005124343,"stop":1596005124343,"duration":0}},{"uid":"351cefcf4ed42edd","status":"passed","time":{"start":1594531289170,"stop":1594531289172,"duration":2}},{"uid":"d1f8f5ff75563b9","status":"passed","time":{"start":1594163434673,"stop":1594163434674,"duration":1}},{"uid":"a9cae12d827143f4","status":"passed","time":{"start":1594163041063,"stop":1594163041064,"duration":1}}]},"4bb0ff4e646e0a12014675a90c29ab15":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":29,"unknown":0,"total":29},"items":[{"uid":"16ec2c17504910be","status":"passed","time":{"start":1596047919250,"stop":1596047919254,"duration":4}},{"uid":"bdc5c2a878865275","status":"passed","time":{"start":1596005119268,"stop":1596005119270,"duration":2}},{"uid":"6f4900c7393ee626","status":"passed","time":{"start":1594531284174,"stop":1594531284175,"duration":1}},{"uid":"b029295acb6111b","status":"passed","time":{"start":1594163429741,"stop":1594163429743,"duration":2}},{"uid":"f04b0cf8c119277","status":"passed","time":{"start":1594163035928,"stop":1594163035929,"duration":1}}]},"11e49f45979df22d4f121435101e70bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1152e12f582a6d83","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"1b30406a017c48cf089c8a0fad27377f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"556ecd5922774ce2","status":"passed","time":{"start":1596047924394,"stop":1596047924395,"duration":1}},{"uid":"99ccbff90b54af6e","status":"passed","time":{"start":1596005124496,"stop":1596005124497,"duration":1}},{"uid":"1cd01055a4395651","status":"passed","time":{"start":1594531289340,"stop":1594531289341,"duration":1}},{"uid":"ec365faf2c68024f","status":"passed","time":{"start":1594163434814,"stop":1594163434815,"duration":1}},{"uid":"7841db6e539293cc","status":"passed","time":{"start":1594163041203,"stop":1594163041204,"duration":1}}]},"4110170ab332498939ad9f2d0f38cf97":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"337bbc1cc632cf0323c6dd0c274cf890":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"48279c6ce1d9facc","status":"passed","time":{"start":1596047920513,"stop":1596047920515,"duration":2}},{"uid":"cee88e89df208e4f","status":"passed","time":{"start":1596005120406,"stop":1596005120409,"duration":3}},{"uid":"2888640c20968fc1","status":"passed","time":{"start":1594531285357,"stop":1594531285359,"duration":2}},{"uid":"50c311d4e2165600","status":"passed","time":{"start":1594163430799,"stop":1594163430804,"duration":5}},{"uid":"72f8eb876566d483","status":"passed","time":{"start":1594163037051,"stop":1594163037053,"duration":2}}]},"0236b069e77409277bb7591e93a2d821":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"28ad7dd78215e469","status":"passed","time":{"start":1596047924079,"stop":1596047924082,"duration":3}},{"uid":"929d68e86e333a47","status":"passed","time":{"start":1596005124179,"stop":1596005124182,"duration":3}},{"uid":"60a002680b8f9755","status":"passed","time":{"start":1594531289018,"stop":1594531289022,"duration":4}},{"uid":"25156512537447fb","status":"passed","time":{"start":1594163434522,"stop":1594163434525,"duration":3}},{"uid":"4ab23c4f0b69cfca","status":"passed","time":{"start":1594163040910,"stop":1594163040913,"duration":3}}]},"76cb71724bbc5595b66f218e2f828c5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"afdaa298aab7eba8","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}}]},"3181c0c2e1c9ba7b49a9f72369c7b0bb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"e437e22193ec7315819824ea1255ab3f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e798d2f5cc38e024","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"b22abb76677627273b26e5c011545fb2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"36b9e5073b489f49","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}}]},"9301dd0240ac1992916dc97e56ba9814":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b59fa0a31eb9ce40","status":"passed","time":{"start":1596047924174,"stop":1596047924175,"duration":1}},{"uid":"a7f2c80fcabfa26f","status":"passed","time":{"start":1596005124275,"stop":1596005124275,"duration":0}},{"uid":"2b4668315481df04","status":"passed","time":{"start":1594531289110,"stop":1594531289111,"duration":1}},{"uid":"f1dd7560201f3c61","status":"passed","time":{"start":1594163434614,"stop":1594163434614,"duration":0}},{"uid":"2f93523973d23b07","status":"passed","time":{"start":1594163040999,"stop":1594163040999,"duration":0}}]},"d47ef982a9155fe594fea1ba842add64":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8a28a9133593bb88","status":"passed","time":{"start":1596047924128,"stop":1596047924129,"duration":1}},{"uid":"990aa76c2e4a8ae5","status":"passed","time":{"start":1596005124223,"stop":1596005124223,"duration":0}},{"uid":"b7a8a588df5fa84b","status":"passed","time":{"start":1594531289062,"stop":1594531289062,"duration":0}},{"uid":"a33bc88bf50f16ab","status":"passed","time":{"start":1594163434567,"stop":1594163434567,"duration":0}},{"uid":"fbc8353fef9eca75","status":"passed","time":{"start":1594163040953,"stop":1594163040953,"duration":0}}]},"9fe496d12a67f53b3208a0b823f2d8c3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"999238307e14499484c6cdf395220c6b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"396df158495e2556","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"265b67c4139deaadb4d7c9416643f4c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"43faaa0cc937a56b","status":"passed","time":{"start":1596047919522,"stop":1596047919526,"duration":4}},{"uid":"5b536f28af25a867","status":"passed","time":{"start":1596005119526,"stop":1596005119533,"duration":7}},{"uid":"b08bc5faad2e150","status":"passed","time":{"start":1594531284426,"stop":1594531284430,"duration":4}},{"uid":"14356135013d67fa","status":"passed","time":{"start":1594163429980,"stop":1594163429983,"duration":3}},{"uid":"e3f41b2e2a75326","status":"passed","time":{"start":1594163036185,"stop":1594163036189,"duration":4}}]},"e9bfe5ed84336ceb50e9a2cd6d3752ed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a33fb2570aec1823","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"94e7f25439d88c0d2dae964ef4a033cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"a9a9cea93ff72e09882edc4b831ce933":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c11bd2bbb0f17cd9","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"9e7357dc1f80abfb389c52315ac4c127":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":33,"unknown":0,"total":33},"items":[{"uid":"e5f4661ae40900e4","status":"passed","time":{"start":1596047923480,"stop":1596047923482,"duration":2}},{"uid":"99c0715ab0c78f38","status":"passed","time":{"start":1596005123484,"stop":1596005123487,"duration":3}},{"uid":"24e43a92770cf78b","status":"passed","time":{"start":1594531288395,"stop":1594531288398,"duration":3}},{"uid":"c3cec6d97d59b177","status":"passed","time":{"start":1594163433881,"stop":1594163433883,"duration":2}},{"uid":"93e9b2e4b1a2d9e7","status":"passed","time":{"start":1594163040369,"stop":1594163040371,"duration":2}}]},"3de540be96edd1a6ef052fccdb3f5cad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"cd64b52319d4c70d68e281e8561ab97f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d8e9539521c4ca00","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}}]},"fb8836e996664af9461454bae0b6f79c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2030ea00b6998f67","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"f2e69721b9f301c2454fa419ac365031":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d6d06cbc227917e","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}}]},"7059a00425101b60df77a404c614b2f7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":22,"unknown":0,"total":22},"items":[{"uid":"c993ad420a98b20b","status":"passed","time":{"start":1596047919033,"stop":1596047919039,"duration":6}},{"uid":"7e3e5f0e6b2ac00a","status":"passed","time":{"start":1596005119072,"stop":1596005119081,"duration":9}},{"uid":"66d603e02f4c879d","status":"passed","time":{"start":1594531284009,"stop":1594531284014,"duration":5}},{"uid":"290ff236df1a2651","status":"passed","time":{"start":1594163429583,"stop":1594163429588,"duration":5}},{"uid":"3bb28b482f891297","status":"passed","time":{"start":1594163035742,"stop":1594163035748,"duration":6}}]},"ef55d8f6f41b96bb67ad31442c22876f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"972994500e7168db","status":"passed","time":{"start":1596047920683,"stop":1596047923226,"duration":2543}},{"uid":"b0f33eb57d8e336c","status":"passed","time":{"start":1596005120573,"stop":1596005123219,"duration":2646}},{"uid":"4011c10620d1ee46","status":"passed","time":{"start":1594531285504,"stop":1594531288155,"duration":2651}},{"uid":"3a3d4867ba83b89a","status":"passed","time":{"start":1594163430990,"stop":1594163433685,"duration":2695}},{"uid":"72b5fe79c601386c","status":"passed","time":{"start":1594163037230,"stop":1594163040153,"duration":2923}}]},"c5f1cfe64ff8d3a4f16a4166c571797e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"8e87d116e1cdd640cae9c4bfd3a15981":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6ce4bba2ff4664c2","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}}]},"4cb72e5cd027f42401e0d39ffc867cce":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a17af77049aab7bd","status":"passed","time":{"start":1596047924486,"stop":1596047924487,"duration":1}},{"uid":"73308d647f298d7b","status":"passed","time":{"start":1596005124589,"stop":1596005124590,"duration":1}},{"uid":"7f0f8fd6b42d9dfb","status":"passed","time":{"start":1594531289454,"stop":1594531289455,"duration":1}},{"uid":"62f6b3da69215445","status":"passed","time":{"start":1594163434905,"stop":1594163434907,"duration":2}},{"uid":"2aab30355c7660ab","status":"passed","time":{"start":1594163041296,"stop":1594163041297,"duration":1}}]},"a7b5f0a3a7cd2fe8faed75e5c4a52138":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"ec000a9da476f6dff77369d6e8beae11":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":27,"unknown":0,"total":27},"items":[{"uid":"d73e082fd035c1ae","status":"passed","time":{"start":1596047920375,"stop":1596047920377,"duration":2}},{"uid":"6e8d5feddee90c92","status":"passed","time":{"start":1596005120273,"stop":1596005120277,"duration":4}},{"uid":"46bbae8bf33b4f59","status":"passed","time":{"start":1594531285230,"stop":1594531285233,"duration":3}},{"uid":"288bb7cb21bbed23","status":"passed","time":{"start":1594163430703,"stop":1594163430707,"duration":4}},{"uid":"1db0e5098d440559","status":"passed","time":{"start":1594163036927,"stop":1594163036928,"duration":1}}]},"4ffbfcd08c63c75577964e4b263564bd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7e0e76f32ac7ce4e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"37cc6f6af3c2bfb1f6d9c3f30ad04774":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"544f917f30323c26","status":"passed","time":{"start":1596047924149,"stop":1596047924151,"duration":2}},{"uid":"afe0a378e2203577","status":"passed","time":{"start":1596005124243,"stop":1596005124247,"duration":4}},{"uid":"977c2304cf2a6f66","status":"passed","time":{"start":1594531289083,"stop":1594531289084,"duration":1}},{"uid":"e0b7907f3f1d33a6","status":"passed","time":{"start":1594163434586,"stop":1594163434587,"duration":1}},{"uid":"924579fed4477ca6","status":"passed","time":{"start":1594163040972,"stop":1594163040974,"duration":2}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"0694e08a88ff80537fae0ce33871b5be":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"f4c5ff18f0370583","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"8c287dae332df512fc4a9755020ffedc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"8958d176e6da23b5aa61f0da94fadb27":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"49c4bb04828a5c06","status":"passed","time":{"start":1596047924452,"stop":1596047924453,"duration":1}},{"uid":"2206ef27ed4fd89","status":"passed","time":{"start":1596005124554,"stop":1596005124556,"duration":2}},{"uid":"76af808094d99686","status":"passed","time":{"start":1594531289410,"stop":1594531289412,"duration":2}},{"uid":"79c1649c8f1501db","status":"passed","time":{"start":1594163434871,"stop":1594163434872,"duration":1}},{"uid":"b8a2cb52c3ed305","status":"passed","time":{"start":1594163041262,"stop":1594163041263,"duration":1}}]},"56f5382d4c162f3df4d4a7f43f75f3c8":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"261e01c60cd0001f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919092,"stop":1596047919092,"duration":0}},{"uid":"1425aefe6b9d52dc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119159,"stop":1596005119159,"duration":0}},{"uid":"19581bdf6c2f6cef","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284048,"stop":1594531284048,"duration":0}},{"uid":"bdf9784089c24697","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429619,"stop":1594163429619,"duration":0}},{"uid":"25de3eff2e4f2b01","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035780,"stop":1594163035780,"duration":0}}]},"d96286d004d21bd579d7fafcd6645054":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fde3570837994bc4","status":"passed","time":{"start":1596047920499,"stop":1596047920502,"duration":3}},{"uid":"8e29639e2599c5a","status":"passed","time":{"start":1596005120389,"stop":1596005120393,"duration":4}},{"uid":"8a781f40dc7409ff","status":"passed","time":{"start":1594531285323,"stop":1594531285325,"duration":2}},{"uid":"6d22a2d4e160dbcf","status":"passed","time":{"start":1594163430785,"stop":1594163430786,"duration":1}},{"uid":"ab45e98f7489faed","status":"passed","time":{"start":1594163037033,"stop":1594163037037,"duration":4}}]},"aa4dfcf7aba7c99039cc0fa1e6688182":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":26,"unknown":0,"total":26},"items":[{"uid":"4c535348e552b6fc","status":"passed","time":{"start":1596047923646,"stop":1596047923647,"duration":1}},{"uid":"f1fdcdfa6bef02ab","status":"passed","time":{"start":1596005123675,"stop":1596005123678,"duration":3}},{"uid":"4b4e4c1672d978df","status":"passed","time":{"start":1594531288591,"stop":1594531288593,"duration":2}},{"uid":"6d9a87548ef8bc1f","status":"passed","time":{"start":1594163434037,"stop":1594163434038,"duration":1}},{"uid":"347394e0a35b39cb","status":"passed","time":{"start":1594163040516,"stop":1594163040517,"duration":1}}]},"262134764fa6664c0e3055da165452d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"e46a6ac896f2504c579c4bb2dd203dd3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c54ee6d74b1751b","status":"passed","time":{"start":1596047924170,"stop":1596047924170,"duration":0}},{"uid":"b56e6bd6da1d60e8","status":"passed","time":{"start":1596005124270,"stop":1596005124270,"duration":0}},{"uid":"95ee071b31ee5509","status":"passed","time":{"start":1594531289104,"stop":1594531289105,"duration":1}},{"uid":"22cf080fd44932a8","status":"passed","time":{"start":1594163434608,"stop":1594163434608,"duration":0}},{"uid":"89d8193cb4e366e3","status":"passed","time":{"start":1594163040993,"stop":1594163040994,"duration":1}}]},"e47953912bc73286c8a01ce448ee3c54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"0b146f7fbac52b042804286da8716f6b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"578c3a6cd3e7e40f","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"27ae718be00b2e9f316c37c338cb2894":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"27e9a83bc54e6424b8009f8d82535881":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"12a2d14cf759563d","status":"passed","time":{"start":1596047924610,"stop":1596047924611,"duration":1}},{"uid":"f8a34cd2c7d65fe4","status":"passed","time":{"start":1596005124721,"stop":1596005124722,"duration":1}},{"uid":"ec46809c88927813","status":"passed","time":{"start":1594531289609,"stop":1594531289610,"duration":1}},{"uid":"53cc9273c8cf707b","status":"passed","time":{"start":1594163435031,"stop":1594163435032,"duration":1}},{"uid":"e7e0aa35a163d92a","status":"passed","time":{"start":1594163041436,"stop":1594163041437,"duration":1}}]},"a2768f68ae825ba2b78473ceb0eb184a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"eb0582ce0674121869dd4f6fce46e7f3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"ebccba1809989898eb718f4c9be6ac5c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4475cf38101ddff9","status":"passed","time":{"start":1596047923549,"stop":1596047923551,"duration":2}},{"uid":"d3e1cbe30154ab3e","status":"passed","time":{"start":1596005123561,"stop":1596005123564,"duration":3}},{"uid":"712cd9a3ec64852d","status":"passed","time":{"start":1594531288489,"stop":1594531288491,"duration":2}},{"uid":"624758f15755b29f","status":"passed","time":{"start":1594163433950,"stop":1594163433951,"duration":1}},{"uid":"2726ed17b195a3c4","status":"passed","time":{"start":1594163040429,"stop":1594163040430,"duration":1}}]},"47664c0f62c7051b733823a3729b3581":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dcf4a7bf7583e93c","status":"passed","time":{"start":1596047924206,"stop":1596047924207,"duration":1}},{"uid":"7c09b81da3d42628","status":"passed","time":{"start":1596005124310,"stop":1596005124311,"duration":1}},{"uid":"99a20a20bb2bf992","status":"passed","time":{"start":1594531289141,"stop":1594531289142,"duration":1}},{"uid":"22cfbed0b5529495","status":"passed","time":{"start":1594163434643,"stop":1594163434644,"duration":1}},{"uid":"500335dfbffd0ef9","status":"passed","time":{"start":1594163041032,"stop":1594163041033,"duration":1}}]},"6c0e4715e324eb0b695da8f41f3f1ffc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3eb30e8474556824","status":"passed","time":{"start":1596047924372,"stop":1596047924373,"duration":1}},{"uid":"d5787cde07d46fdf","status":"passed","time":{"start":1596005124476,"stop":1596005124478,"duration":2}},{"uid":"11e9014b0f230fc","status":"passed","time":{"start":1594531289319,"stop":1594531289320,"duration":1}},{"uid":"9fdd4e9dffee2ec6","status":"passed","time":{"start":1594163434793,"stop":1594163434794,"duration":1}},{"uid":"45bd1a2ff639080c","status":"passed","time":{"start":1594163041183,"stop":1594163041184,"duration":1}}]},"d8282a7eb3ad08bfe01ca861e38bf2cb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8150d86645eb36cf","status":"passed","time":{"start":1596047924433,"stop":1596047924435,"duration":2}},{"uid":"bb6bb9c3ab9bb020","status":"passed","time":{"start":1596005124534,"stop":1596005124537,"duration":3}},{"uid":"b487e04f080cc503","status":"passed","time":{"start":1594531289387,"stop":1594531289389,"duration":2}},{"uid":"584221466e04ac28","status":"passed","time":{"start":1594163434852,"stop":1594163434853,"duration":1}},{"uid":"713da3149ef8c08e","status":"passed","time":{"start":1594163041242,"stop":1594163041243,"duration":1}}]},"4b9df5c8546e5aa2b71e686027672d5a":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"a225da0a45c18da1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919562,"stop":1596047919562,"duration":0}},{"uid":"dbda4089f7f1a910","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119558,"stop":1596005119558,"duration":0}},{"uid":"a3702374858b00d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284459,"stop":1594531284459,"duration":0}},{"uid":"efb88c24de2576cf","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430012,"stop":1594163430012,"duration":0}},{"uid":"9881c9d8f7a6cdd7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036228,"stop":1594163036228,"duration":0}}]},"bf9ab588ec37b96b09a8d0c56f74fc4a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"5268fe9db165b30e7ec4383b2c210a70":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e8a8027406157d74","status":"passed","time":{"start":1596047923698,"stop":1596047923702,"duration":4}},{"uid":"8457bf3968a42f0d","status":"passed","time":{"start":1596005123727,"stop":1596005123729,"duration":2}},{"uid":"7fcb17208f3d91a9","status":"passed","time":{"start":1594531288639,"stop":1594531288641,"duration":2}},{"uid":"58441fc0dc5ca6b8","status":"passed","time":{"start":1594163434078,"stop":1594163434081,"duration":3}},{"uid":"52c506e3bc0042a","status":"passed","time":{"start":1594163040553,"stop":1594163040554,"duration":1}}]},"1ce6947fd0ebccbdeafac537499a9214":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4e1d4d9fac88298e","status":"passed","time":{"start":1596047924534,"stop":1596047924535,"duration":1}},{"uid":"ce2b2a87410f33de","status":"passed","time":{"start":1596005124639,"stop":1596005124642,"duration":3}},{"uid":"131b2a13475e3972","status":"passed","time":{"start":1594531289516,"stop":1594531289518,"duration":2}},{"uid":"78cb835834d1ed2e","status":"passed","time":{"start":1594163434954,"stop":1594163434955,"duration":1}},{"uid":"8ec62a0defba3c67","status":"passed","time":{"start":1594163041354,"stop":1594163041355,"duration":1}}]},"571e6c8954ee703e39040eac41d8ca2e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"df897630ab89a52","status":"passed","time":{"start":1596047919453,"stop":1596047919454,"duration":1}},{"uid":"da6aa960f9648f20","status":"passed","time":{"start":1596005119473,"stop":1596005119473,"duration":0}},{"uid":"62f8188f8b022026","status":"passed","time":{"start":1594531284382,"stop":1594531284383,"duration":1}},{"uid":"d168a7a38e51588a","status":"passed","time":{"start":1594163429937,"stop":1594163429938,"duration":1}},{"uid":"966bde63ac98e56c","status":"passed","time":{"start":1594163036129,"stop":1594163036130,"duration":1}}]},"a815ca6b5c6ae6833c572d19bb20ed19":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"297ed61987fc879a","status":"passed","time":{"start":1596047923337,"stop":1596047923340,"duration":3}},{"uid":"25f6db093b865f6e","status":"passed","time":{"start":1596005123342,"stop":1596005123347,"duration":5}},{"uid":"b7a56e0b0e08277a","status":"passed","time":{"start":1594531288260,"stop":1594531288260,"duration":0}},{"uid":"5451a9c30a83c42a","status":"passed","time":{"start":1594163433783,"stop":1594163433784,"duration":1}},{"uid":"9cf7e0428eee6060","status":"passed","time":{"start":1594163040258,"stop":1594163040259,"duration":1}}]},"644dd835a63b65e4d48cb2104cbbc61a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"23d3979fba69cd62","status":"passed","time":{"start":1596047924017,"stop":1596047924019,"duration":2}},{"uid":"dc2a945fd2226621","status":"passed","time":{"start":1596005124108,"stop":1596005124110,"duration":2}},{"uid":"71844b3661fbfdc1","status":"passed","time":{"start":1594531288958,"stop":1594531288959,"duration":1}},{"uid":"d4b963e4cdba7153","status":"passed","time":{"start":1594163434452,"stop":1594163434454,"duration":2}},{"uid":"f43cc1f7e002af99","status":"passed","time":{"start":1594163040832,"stop":1594163040833,"duration":1}}]},"663be697fad5745815fa1d52a2485aaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"12012737d3600917","status":"passed","time":{"start":1596047924159,"stop":1596047924159,"duration":0}},{"uid":"ad95e7003b33706d","status":"passed","time":{"start":1596005124257,"stop":1596005124257,"duration":0}},{"uid":"df348bcd64efc627","status":"passed","time":{"start":1594531289094,"stop":1594531289094,"duration":0}},{"uid":"5511a03d07c814c6","status":"passed","time":{"start":1594163434596,"stop":1594163434597,"duration":1}},{"uid":"ca9b4c4f75fc79d6","status":"passed","time":{"start":1594163040983,"stop":1594163040983,"duration":0}}]},"0ca6c261f6caf983cecc5d9fa898244b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"b223f14337b9b49b6e64d94d9479e857":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"66f1b8d1e5ed1dbe","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"cff2b633528ecd689efa06bc07b0cbad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"221803c6f8353887","status":"passed","time":{"start":1596047924504,"stop":1596047924505,"duration":1}},{"uid":"88295a1e0a953d36","status":"passed","time":{"start":1596005124609,"stop":1596005124610,"duration":1}},{"uid":"c20cde61f067e395","status":"passed","time":{"start":1594531289477,"stop":1594531289477,"duration":0}},{"uid":"b6459e84010f0c41","status":"passed","time":{"start":1594163434925,"stop":1594163434925,"duration":0}},{"uid":"4b1951d683a33e6c","status":"passed","time":{"start":1594163041317,"stop":1594163041323,"duration":6}}]},"c8e68699f69722b658f5f06dbcd81106":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"9d452c5742c1a196","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919593,"stop":1596047919593,"duration":0}},{"uid":"d2368433f3eaa614","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119578,"stop":1596005119578,"duration":0}},{"uid":"9175f83d2e02a609","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284476,"stop":1594531284476,"duration":0}},{"uid":"449cc0b01c523314","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430029,"stop":1594163430029,"duration":0}},{"uid":"30f8cd08dbb389dd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036249,"stop":1594163036249,"duration":0}}]},"bf37412e0e610d07d951e5fde674ec97":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"f5e7301aea89b5d40e1159c0857f273c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":25,"unknown":0,"total":25},"items":[{"uid":"c613a638755d07e5","status":"passed","time":{"start":1596047920355,"stop":1596047920358,"duration":3}},{"uid":"293d0bf685ed1b1d","status":"passed","time":{"start":1596005120259,"stop":1596005120260,"duration":1}},{"uid":"9ec6eb7b9588290","status":"passed","time":{"start":1594531285220,"stop":1594531285222,"duration":2}},{"uid":"c64d36f6eb7683d8","status":"passed","time":{"start":1594163430692,"stop":1594163430693,"duration":1}},{"uid":"2a04fd28f8355e23","status":"passed","time":{"start":1594163036917,"stop":1594163036918,"duration":1}}]},"10af3a5c9f6fb077c8237771f4b70e20":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"45eae88b29d1063162552e183c7ef4f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7a84f8cdf7ca164","status":"passed","time":{"start":1596047924361,"stop":1596047924362,"duration":1}},{"uid":"48a0acd224010e8","status":"passed","time":{"start":1596005124465,"stop":1596005124466,"duration":1}},{"uid":"823a4e83429c2d1b","status":"passed","time":{"start":1594531289307,"stop":1594531289308,"duration":1}},{"uid":"85c97a97b0e3037f","status":"passed","time":{"start":1594163434784,"stop":1594163434785,"duration":1}},{"uid":"9181d4db84444f93","status":"passed","time":{"start":1594163041174,"stop":1594163041175,"duration":1}}]},"b85aee9ae2ee06fc56de8481df862c73":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d837297408a13c1e","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"2f8f18e1fa04b0776df535518795568e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"64318d4a8a2213e6","status":"passed","time":{"start":1596047924674,"stop":1596047924674,"duration":0}},{"uid":"6fbbde4ffedbca69","status":"passed","time":{"start":1596005124812,"stop":1596005124813,"duration":1}},{"uid":"f7b04ec70e1e2998","status":"passed","time":{"start":1594531289689,"stop":1594531289690,"duration":1}},{"uid":"96a6add505173a69","status":"passed","time":{"start":1594163435095,"stop":1594163435096,"duration":1}},{"uid":"9eb12b7dcf0dfb1e","status":"passed","time":{"start":1594163041512,"stop":1594163041513,"duration":1}}]},"80de0b9e588cbd07398d6b564308167b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9f8c57de0f878507","status":"passed","time":{"start":1596047923248,"stop":1596047923249,"duration":1}},{"uid":"450d78c633ea7054","status":"passed","time":{"start":1596005123242,"stop":1596005123243,"duration":1}},{"uid":"6b85938e19540057","status":"passed","time":{"start":1594531288175,"stop":1594531288176,"duration":1}},{"uid":"5a024a88331bc5f5","status":"passed","time":{"start":1594163433705,"stop":1594163433705,"duration":0}},{"uid":"190a2ce33b0b8ce6","status":"passed","time":{"start":1594163040173,"stop":1594163040173,"duration":0}}]},"a12b9599b8bf7b92d2c2e1462a17342d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"a21a46b7b739add8ed87983bb6839a80":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3f19c723aec9bbbd","status":"passed","time":{"start":1596047923411,"stop":1596047923412,"duration":1}},{"uid":"d92c197afdcf59d5","status":"passed","time":{"start":1596005123408,"stop":1596005123409,"duration":1}},{"uid":"2c0ade2f647cae7f","status":"passed","time":{"start":1594531288334,"stop":1594531288335,"duration":1}},{"uid":"718ec6b8c7e864a7","status":"passed","time":{"start":1594163433830,"stop":1594163433831,"duration":1}},{"uid":"e83d3154896ac00b","status":"passed","time":{"start":1594163040313,"stop":1594163040315,"duration":2}}]},"f04224c3027ffbdd1d73330dddec4357":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"78ac10cd954d464d","status":"passed","time":{"start":1596047923978,"stop":1596047923979,"duration":1}},{"uid":"95e32c259c3e91eb","status":"passed","time":{"start":1596005124060,"stop":1596005124060,"duration":0}},{"uid":"82720fd165081397","status":"passed","time":{"start":1594531288913,"stop":1594531288913,"duration":0}},{"uid":"cabbdbf7c4dc2fca","status":"passed","time":{"start":1594163434404,"stop":1594163434405,"duration":1}},{"uid":"d2301e3f4bd8c947","status":"passed","time":{"start":1594163040792,"stop":1594163040793,"duration":1}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"68fe6059f779e771c85a9294453424b7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"494b2d233c0d079a","status":"passed","time":{"start":1596047920437,"stop":1596047920439,"duration":2}},{"uid":"284480376794b8c","status":"passed","time":{"start":1596005120337,"stop":1596005120339,"duration":2}},{"uid":"b1cec2c38735a32d","status":"passed","time":{"start":1594531285284,"stop":1594531285285,"duration":1}},{"uid":"a4c3ea1e7d09b923","status":"passed","time":{"start":1594163430750,"stop":1594163430751,"duration":1}},{"uid":"cc1fca336626fc40","status":"passed","time":{"start":1594163036982,"stop":1594163036984,"duration":2}}]},"8be748c3d426c1b249bd90b2b524810d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ee3c307a9855a6d2","status":"passed","time":{"start":1596047920540,"stop":1596047920540,"duration":0}},{"uid":"f6e3ab7f8304d678","status":"passed","time":{"start":1596005120435,"stop":1596005120436,"duration":1}},{"uid":"f03ad10b2c6c1d5f","status":"passed","time":{"start":1594531285383,"stop":1594531285384,"duration":1}},{"uid":"13e172e2a983a48","status":"passed","time":{"start":1594163430835,"stop":1594163430837,"duration":2}},{"uid":"cb83fca88984b893","status":"passed","time":{"start":1594163037087,"stop":1594163037088,"duration":1}}]},"47a8a15643c132c9b9f0d902bcff28dd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d1585e7c78fd8d06","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}}]},"92164414ad94bf1f5638230345fa606d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"fe70f843c5545a5667958dc2a89ae238":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"62762b3c282c644b","status":"passed","time":{"start":1596047923725,"stop":1596047923726,"duration":1}},{"uid":"48ea52821d6aa2a8","status":"passed","time":{"start":1596005123756,"stop":1596005123757,"duration":1}},{"uid":"468448816dd27400","status":"passed","time":{"start":1594531288662,"stop":1594531288665,"duration":3}},{"uid":"34ac245591c6d4ad","status":"passed","time":{"start":1594163434104,"stop":1594163434105,"duration":1}},{"uid":"655fb90914064be1","status":"passed","time":{"start":1594163040571,"stop":1594163040572,"duration":1}}]},"a59ece93d187b6f3f1677fc20ca9b1f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e94cf5e29247be9a","status":"passed","time":{"start":1596047924467,"stop":1596047924468,"duration":1}},{"uid":"b561cf552d5e73c3","status":"passed","time":{"start":1596005124571,"stop":1596005124572,"duration":1}},{"uid":"9feae1e507d9e17b","status":"passed","time":{"start":1594531289432,"stop":1594531289433,"duration":1}},{"uid":"6f1625cf376dfbc9","status":"passed","time":{"start":1594163434886,"stop":1594163434887,"duration":1}},{"uid":"d9439e6355e142f2","status":"passed","time":{"start":1594163041278,"stop":1594163041278,"duration":0}}]},"73977fc23d0427de5570dbdeaca30321":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"7c59feaf54bd4089e056f041844e3fe6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"df3147d31fee6968","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"7e72b93ac2dd3d898a0bd8875f55f383":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":30,"unknown":0,"total":30},"items":[{"uid":"86c04bcc57c9b2e7","status":"passed","time":{"start":1596047919283,"stop":1596047919288,"duration":5}},{"uid":"718e9583733eb428","status":"passed","time":{"start":1596005119302,"stop":1596005119303,"duration":1}},{"uid":"fef40d97bc21931f","status":"passed","time":{"start":1594531284197,"stop":1594531284197,"duration":0}},{"uid":"1864446173135965","status":"passed","time":{"start":1594163429764,"stop":1594163429765,"duration":1}},{"uid":"1a6c79c62f0b0e02","status":"passed","time":{"start":1594163035959,"stop":1594163035960,"duration":1}}]},"7c1c8c6318c554c86b695deacecf1854":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"3a0022f9e1e56fec3d9bba2b7b27d486":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3707f05ce7b52058","status":"passed","time":{"start":1596047923888,"stop":1596047923890,"duration":2}},{"uid":"36748e65bdf61ed8","status":"passed","time":{"start":1596005123920,"stop":1596005123921,"duration":1}},{"uid":"8a04fc81c9c71515","status":"passed","time":{"start":1594531288820,"stop":1594531288822,"duration":2}},{"uid":"4c7d8f554bf4a426","status":"passed","time":{"start":1594163434289,"stop":1594163434291,"duration":2}},{"uid":"4f2f66d8ffe3d17e","status":"passed","time":{"start":1594163040705,"stop":1594163040707,"duration":2}}]},"a509e3c0ca4051c43628b1084be46cd0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"102dd06132e50a69","status":"passed","time":{"start":1596047924184,"stop":1596047924185,"duration":1}},{"uid":"969f4bc7638ab01","status":"passed","time":{"start":1596005124285,"stop":1596005124285,"duration":0}},{"uid":"3286a5532b39c020","status":"passed","time":{"start":1594531289121,"stop":1594531289121,"duration":0}},{"uid":"f665e521010427be","status":"passed","time":{"start":1594163434624,"stop":1594163434624,"duration":0}},{"uid":"f5299daae62ca364","status":"passed","time":{"start":1594163041010,"stop":1594163041011,"duration":1}}]},"9fee131d815f560a33f2993b7a094489":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"be5a8376fdcba717","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"ecc1f7419b2f77621f5c909f1d0df9a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"2ab55d25b4f71b0a35e531ab6cae710e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"7732bdc5c8a12e91b22a2477eebb13bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":6,"unknown":0,"total":6},"items":[{"uid":"8dc143e390931cc3","status":"passed","time":{"start":1596047920003,"stop":1596047920224,"duration":221}},{"uid":"7856b8751b472e6a","status":"passed","time":{"start":1596005119952,"stop":1596005120131,"duration":179}},{"uid":"19f2ba140f2437ae","status":"passed","time":{"start":1594531284873,"stop":1594531285093,"duration":220}},{"uid":"4f2c07b07cf9f421","status":"passed","time":{"start":1594163430378,"stop":1594163430587,"duration":209}},{"uid":"53b8c0131b3b3490","status":"passed","time":{"start":1594163036601,"stop":1594163036803,"duration":202}}]},"05d3d7ae3b11057af82404f162aa30df":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"c5fd0529c8efb80c665151c8fe4db950":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dd485df44deac579","status":"passed","time":{"start":1596047919638,"stop":1596047919640,"duration":2}},{"uid":"94eb7c5df2ab243c","status":"passed","time":{"start":1596005119617,"stop":1596005119617,"duration":0}},{"uid":"936ceda4816c252c","status":"passed","time":{"start":1594531284519,"stop":1594531284520,"duration":1}},{"uid":"1331fbc766a5d0da","status":"passed","time":{"start":1594163430062,"stop":1594163430063,"duration":1}},{"uid":"7fac570d333c8799","status":"passed","time":{"start":1594163036280,"stop":1594163036281,"duration":1}}]},"4ead7e0fcfcb5e2314fc6a89a93e9734":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fbda7cc90bd0bf8e","status":"passed","time":{"start":1596047924351,"stop":1596047924353,"duration":2}},{"uid":"be8a17da662ef6fa","status":"passed","time":{"start":1596005124455,"stop":1596005124456,"duration":1}},{"uid":"5459c453ab68544f","status":"passed","time":{"start":1594531289294,"stop":1594531289295,"duration":1}},{"uid":"45d0744cd9f6c67f","status":"passed","time":{"start":1594163434775,"stop":1594163434776,"duration":1}},{"uid":"651a68767b0788de","status":"passed","time":{"start":1594163041164,"stop":1594163041165,"duration":1}}]},"fc1061f17dd61adf726ad7c2bb23539c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"3249b5db727c0aadecf3cb62b280e675":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"164087ecc666d9a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"d2c9cdacf9fca346eec2858cd44275e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"c387db789a67b80c29f3c3ba2e6c9bce":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"59de8dec543be1db3938897a3c9169de":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"60f5877935ced5c5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}}]},"3535b5d3361369c2593c9d89ae1cea1a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6554b0fd80e34f57","status":"passed","time":{"start":1596047923924,"stop":1596047923929,"duration":5}},{"uid":"e69af86f54c7868c","status":"passed","time":{"start":1596005123970,"stop":1596005123973,"duration":3}},{"uid":"bacecbd86edd2bf0","status":"passed","time":{"start":1594531288858,"stop":1594531288859,"duration":1}},{"uid":"8d0dd3ee10bf22df","status":"passed","time":{"start":1594163434341,"stop":1594163434343,"duration":2}},{"uid":"44c4d2ac11e141a4","status":"passed","time":{"start":1594163040743,"stop":1594163040745,"duration":2}}]},"533d438d8a468bebefb4d5ec0ab2129d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9f8e30dc708eeb","status":"passed","time":{"start":1596047924494,"stop":1596047924495,"duration":1}},{"uid":"33c3d515cc3533ef","status":"passed","time":{"start":1596005124596,"stop":1596005124597,"duration":1}},{"uid":"90027bd4f3079ed1","status":"passed","time":{"start":1594531289465,"stop":1594531289467,"duration":2}},{"uid":"14a73be41002f794","status":"passed","time":{"start":1594163434913,"stop":1594163434914,"duration":1}},{"uid":"ba9a6e2c1a64799c","status":"passed","time":{"start":1594163041302,"stop":1594163041303,"duration":1}}]},"8de0f2f9cbc9fd26d52a18adb21715cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":13,"unknown":0,"total":13},"items":[{"uid":"706a337230dfa133","status":"passed","time":{"start":1596047920580,"stop":1596047920582,"duration":2}},{"uid":"762f8df9632f387f","status":"passed","time":{"start":1596005120477,"stop":1596005120479,"duration":2}},{"uid":"4046a5bcf1bd862c","status":"passed","time":{"start":1594531285418,"stop":1594531285420,"duration":2}},{"uid":"206ba31b5ce3c0b9","status":"passed","time":{"start":1594163430880,"stop":1594163430883,"duration":3}},{"uid":"5ceaa41dcc6b2453","status":"passed","time":{"start":1594163037121,"stop":1594163037123,"duration":2}}]},"e3d629a995491cb3a3079998a04583ff":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"b2b12ad2385368d21ad81dc66e7b08ab":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"3a2742b86cdf4969","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919084,"stop":1596047919084,"duration":0}},{"uid":"8d42dc79d020ca33","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119147,"stop":1596005119147,"duration":0}},{"uid":"156d58f373c128f7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284042,"stop":1594531284042,"duration":0}},{"uid":"4065714818e524e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429612,"stop":1594163429612,"duration":0}},{"uid":"d107062de6c23913","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035774,"stop":1594163035774,"duration":0}}]},"fd37424f9957f0d1afe768cce5a8cc08":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"1051a395d8289668fbb59ee9de3c3a4f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"e3b42ce7d56f4739019f8eb0baf01610":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e5cd64cfdc76a8e9","status":"passed","time":{"start":1596047924578,"stop":1596047924579,"duration":1}},{"uid":"49247b03e13673b2","status":"passed","time":{"start":1596005124689,"stop":1596005124689,"duration":0}},{"uid":"c8961ed572428fae","status":"passed","time":{"start":1594531289572,"stop":1594531289573,"duration":1}},{"uid":"d218a6650a6ff33b","status":"passed","time":{"start":1594163435000,"stop":1594163435001,"duration":1}},{"uid":"d235675b8728288e","status":"passed","time":{"start":1594163041399,"stop":1594163041400,"duration":1}}]},"77c7125894dc4635fdd1db51405959d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"29080842d6cf4a4d18869922ebddc40d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f118916485c24d6","status":"passed","time":{"start":1596047920674,"stop":1596047920675,"duration":1}},{"uid":"2493234e74d23534","status":"passed","time":{"start":1596005120564,"stop":1596005120565,"duration":1}},{"uid":"b7e317fc8a443f5a","status":"passed","time":{"start":1594531285494,"stop":1594531285495,"duration":1}},{"uid":"853334812ba3faf8","status":"passed","time":{"start":1594163430979,"stop":1594163430979,"duration":0}},{"uid":"5687ffdf9660a963","status":"passed","time":{"start":1594163037217,"stop":1594163037217,"duration":0}}]},"100f3ec5a4076df24287398b05313e40":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":23,"unknown":0,"total":23},"items":[{"uid":"76b5913eea1a207c","status":"passed","time":{"start":1596047919066,"stop":1596047919069,"duration":3}},{"uid":"703eccc37aa4480a","status":"passed","time":{"start":1596005119127,"stop":1596005119131,"duration":4}},{"uid":"5b733b15ffd4d21b","status":"passed","time":{"start":1594531284026,"stop":1594531284028,"duration":2}},{"uid":"ea891ee495efae08","status":"passed","time":{"start":1594163429598,"stop":1594163429599,"duration":1}},{"uid":"e247bba949d0fae1","status":"passed","time":{"start":1594163035758,"stop":1594163035760,"duration":2}}]},"acc964c78dd821707ef4a0652a683e9a":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"6fbcaa806475fb37","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"66b3728fd611f13d7a6d30cfef1eac32":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3c872a9f82c9971c","status":"passed","time":{"start":1596047924267,"stop":1596047924268,"duration":1}},{"uid":"bcde761c499b0acf","status":"passed","time":{"start":1596005124370,"stop":1596005124370,"duration":0}},{"uid":"8ee0d565efe185b5","status":"passed","time":{"start":1594531289198,"stop":1594531289199,"duration":1}},{"uid":"4af38b49485e8e29","status":"passed","time":{"start":1594163434697,"stop":1594163434697,"duration":0}},{"uid":"e911b9f00e76a1ca","status":"passed","time":{"start":1594163041086,"stop":1594163041087,"duration":1}}]},"96cb2196fbafa0a005eea045cb7fef37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c3565c63db8c5cc1","status":"passed","time":{"start":1596047923284,"stop":1596047923285,"duration":1}},{"uid":"c5bb4146e2b5a933","status":"passed","time":{"start":1596005123286,"stop":1596005123288,"duration":2}},{"uid":"5b23a4abf26c143b","status":"passed","time":{"start":1594531288214,"stop":1594531288215,"duration":1}},{"uid":"f29335cd92f2b79b","status":"passed","time":{"start":1594163433741,"stop":1594163433742,"duration":1}},{"uid":"f29ae02ad6796c3f","status":"passed","time":{"start":1594163040213,"stop":1594163040214,"duration":1}}]},"8069a1b5a4342457d2dabf5819382a2e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"6f5ecfc36d52495898ac1adb82dbd0a0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"bb5168fb216b99f8","status":"passed","time":{"start":1596047919300,"stop":1596047919302,"duration":2}},{"uid":"eb69633e36cc1956","status":"passed","time":{"start":1596005119316,"stop":1596005119318,"duration":2}},{"uid":"b4ec36f426cb4b58","status":"passed","time":{"start":1594531284206,"stop":1594531284208,"duration":2}},{"uid":"b29b4914b14249c3","status":"passed","time":{"start":1594163429774,"stop":1594163429776,"duration":2}},{"uid":"52715f452ea1fef5","status":"passed","time":{"start":1594163035970,"stop":1594163035971,"duration":1}}]},"acc23f20db867eee3aab4aeb9edba6b9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"bbc7bae406e717fa","status":"passed","time":{"start":1596047923947,"stop":1596047923949,"duration":2}},{"uid":"93ec069bae12949a","status":"passed","time":{"start":1596005124021,"stop":1596005124022,"duration":1}},{"uid":"783d7c9686b2cfc1","status":"passed","time":{"start":1594531288879,"stop":1594531288880,"duration":1}},{"uid":"401ab1a2cf0ba165","status":"passed","time":{"start":1594163434368,"stop":1594163434369,"duration":1}},{"uid":"cfb7a98615bcdc64","status":"passed","time":{"start":1594163040763,"stop":1594163040764,"duration":1}}]},"d2b4dccd0eb8dfd6ef62ac0349f0f6a7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"963bc543b4e4096b877e161985d8949c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"7a974b0f364ee0a07e53a12f012266eb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f238cb045c94f35e","status":"passed","time":{"start":1596047919979,"stop":1596047919980,"duration":1}},{"uid":"2d90b3c7e3742b06","status":"passed","time":{"start":1596005119933,"stop":1596005119934,"duration":1}},{"uid":"ef32885d281df3d2","status":"passed","time":{"start":1594531284847,"stop":1594531284848,"duration":1}},{"uid":"8b5e3b5a0b7b5d2b","status":"passed","time":{"start":1594163430360,"stop":1594163430361,"duration":1}},{"uid":"a1b80a7fc2e2720e","status":"passed","time":{"start":1594163036582,"stop":1594163036584,"duration":2}}]},"496d33fa6a1e979e0779d14eb86faf0f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"40a1d8afe1f8a763","status":"passed","time":{"start":1596047924424,"stop":1596047924424,"duration":0}},{"uid":"3e996c056f691154","status":"passed","time":{"start":1596005124526,"stop":1596005124527,"duration":1}},{"uid":"153b7f803985616b","status":"passed","time":{"start":1594531289372,"stop":1594531289373,"duration":1}},{"uid":"b28ac60f6f72115d","status":"passed","time":{"start":1594163434842,"stop":1594163434843,"duration":1}},{"uid":"659230b41107ed67","status":"passed","time":{"start":1594163041233,"stop":1594163041233,"duration":0}}]},"0e18519ae24fd5fc6878157b597bcdf8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7c86f57dd40dd0c","status":"passed","time":{"start":1596047923374,"stop":1596047923379,"duration":5}},{"uid":"b9ab24ddee75278b","status":"passed","time":{"start":1596005123383,"stop":1596005123385,"duration":2}},{"uid":"ab9e385637c61919","status":"passed","time":{"start":1594531288315,"stop":1594531288316,"duration":1}},{"uid":"51134fe3ab27bbb7","status":"passed","time":{"start":1594163433812,"stop":1594163433813,"duration":1}},{"uid":"7c340c23c00d20d4","status":"passed","time":{"start":1594163040296,"stop":1594163040298,"duration":2}}]},"3086879b276d25b4dd0f45ada5d9f20b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"11acd8f3802b43ce2264b83840d495b4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"eb89ee17d2b7a29796b27ce5ba503de6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"4171a558a2bea15b5a0546d36c9a1c63":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"3a2cad5dab684132d1f8974f9a6b5c75":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"48fdcdea5c8db828f662f95e3fb16639":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5f1b4341a99a98a","status":"passed","time":{"start":1596047923820,"stop":1596047923821,"duration":1}},{"uid":"82cbe8c5232c3097","status":"passed","time":{"start":1596005123849,"stop":1596005123851,"duration":2}},{"uid":"9cbb0fc5b77d3e3b","status":"passed","time":{"start":1594531288763,"stop":1594531288764,"duration":1}},{"uid":"3d07e771e31e0282","status":"passed","time":{"start":1594163434221,"stop":1594163434223,"duration":2}},{"uid":"dcce21d1395e16c2","status":"passed","time":{"start":1594163040652,"stop":1594163040653,"duration":1}}]},"a84f9ba6c41cb4d0c2f13ab2b6e69db4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"791f21c32f977f8","status":"passed","time":{"start":1596047923967,"stop":1596047923968,"duration":1}},{"uid":"807ae8688e6e410b","status":"passed","time":{"start":1596005124047,"stop":1596005124048,"duration":1}},{"uid":"b14a2aec4a7f6313","status":"passed","time":{"start":1594531288902,"stop":1594531288903,"duration":1}},{"uid":"64704897599f7eb5","status":"passed","time":{"start":1594163434393,"stop":1594163434394,"duration":1}},{"uid":"5af04030c9083062","status":"passed","time":{"start":1594163040783,"stop":1594163040784,"duration":1}}]},"e05344702d3401dd896d4214550f8b4c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2aa41c52e02e83e6","status":"passed","time":{"start":1596047920473,"stop":1596047920475,"duration":2}},{"uid":"c96c3300d62ce238","status":"passed","time":{"start":1596005120373,"stop":1596005120375,"duration":2}},{"uid":"7f326ceed0ebd8c2","status":"passed","time":{"start":1594531285308,"stop":1594531285310,"duration":2}},{"uid":"e5757b6da7debed7","status":"passed","time":{"start":1594163430774,"stop":1594163430775,"duration":1}},{"uid":"ed254757a9ef4678","status":"passed","time":{"start":1594163037017,"stop":1594163037019,"duration":2}}]},"6daadee7d5a71dbe5d0aac732dc95010":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"4b95b2f07d416f82","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919534,"stop":1596047919534,"duration":0}},{"uid":"e5cedb548c17dbc6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119541,"stop":1596005119541,"duration":0}},{"uid":"6fe20d26818b8ba1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284441,"stop":1594531284441,"duration":0}},{"uid":"6025595b20002dc8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429991,"stop":1594163429991,"duration":0}},{"uid":"7fafe229d76b3100","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036202,"stop":1594163036202,"duration":0}}]},"613947cd597dffbd20e045894441141e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c78804d71d8959","status":"passed","time":{"start":1596047924416,"stop":1596047924416,"duration":0}},{"uid":"8429852f2cfb59f","status":"passed","time":{"start":1596005124517,"stop":1596005124518,"duration":1}},{"uid":"7327aae01ec01c74","status":"passed","time":{"start":1594531289360,"stop":1594531289361,"duration":1}},{"uid":"30146c8bb0795b74","status":"passed","time":{"start":1594163434835,"stop":1594163434835,"duration":0}},{"uid":"186e3504011f1ddb","status":"passed","time":{"start":1594163041224,"stop":1594163041225,"duration":1}}]},"439816a19ff5fc7179df296b3e238bad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"ae9d861fd855b26fd2ffe303ebf8c238":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"2af6aa545c98eb65f8404392b6468813":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"245809d83d6201b756f2d220be6127e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"104119dea7614dae","status":"passed","time":{"start":1596047924620,"stop":1596047924620,"duration":0}},{"uid":"20148c0e39519534","status":"passed","time":{"start":1596005124734,"stop":1596005124735,"duration":1}},{"uid":"1dd968d4aec20037","status":"passed","time":{"start":1594531289621,"stop":1594531289622,"duration":1}},{"uid":"d2bb7a8bbe5eb188","status":"passed","time":{"start":1594163435040,"stop":1594163435041,"duration":1}},{"uid":"6c08043f492878cb","status":"passed","time":{"start":1594163041451,"stop":1594163041452,"duration":1}}]},"4482f1de7682fdd9affc3f0318780098":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d44254868b620b1","status":"passed","time":{"start":1596047924283,"stop":1596047924284,"duration":1}},{"uid":"90499df4f267592f","status":"passed","time":{"start":1596005124388,"stop":1596005124389,"duration":1}},{"uid":"96b171c3f7aec169","status":"passed","time":{"start":1594531289221,"stop":1594531289222,"duration":1}},{"uid":"1087b5d634273e54","status":"passed","time":{"start":1594163434713,"stop":1594163434714,"duration":1}},{"uid":"b28330f9316d8a25","status":"passed","time":{"start":1594163041103,"stop":1594163041104,"duration":1}}]},"7af7e9479cf2a47a636ae35231bacc9f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bc3230f80ad8864d","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}}]},"334b612b45e8a87e83a3482704f4ba8a":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"62bf772c3a2aa5d2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}}]},"8a320800b2086203174291b36ca9f131":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"572ec2fa6216ef7f","status":"passed","time":{"start":1596047919050,"stop":1596047919054,"duration":4}},{"uid":"616e8aa60b392b88","status":"passed","time":{"start":1596005119093,"stop":1596005119096,"duration":3}}]},"efddacca930076c1013b396c6bf9ad2b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"aaef6593296fd19246b6caa71f38ecab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"314fa0c911eecc8550b44d846452396a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dbc0e90eb4b59964","status":"passed","time":{"start":1596047923398,"stop":1596047923399,"duration":1}},{"uid":"2a372198588763ac","status":"passed","time":{"start":1596005123398,"stop":1596005123400,"duration":2}},{"uid":"4d844f8568dbe3ee","status":"passed","time":{"start":1594531288328,"stop":1594531288329,"duration":1}},{"uid":"40024d36cd6a9b14","status":"passed","time":{"start":1594163433823,"stop":1594163433824,"duration":1}},{"uid":"ba3afb6612af0b85","status":"passed","time":{"start":1594163040307,"stop":1594163040308,"duration":1}}]},"489e3070dc83756c411301400dd6e3c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"0b32c15001d0d63b38660da738a14f27":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":11,"unknown":0,"total":11},"items":[{"uid":"4f042f8b1ea82898","status":"passed","time":{"start":1596047923512,"stop":1596047923514,"duration":2}},{"uid":"83de0438b86a3482","status":"passed","time":{"start":1596005123530,"stop":1596005123531,"duration":1}},{"uid":"bf7ae8aec398e92a","status":"passed","time":{"start":1594531288443,"stop":1594531288445,"duration":2}},{"uid":"e0c7f6610e5b66fd","status":"passed","time":{"start":1594163433907,"stop":1594163433908,"duration":1}},{"uid":"ac9bcc6689e72b84","status":"passed","time":{"start":1594163040396,"stop":1594163040398,"duration":2}}]},"c44d6aae77aa205665511a5ebd2959de":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"45ada06dcb0e9f0a","status":"passed","time":{"start":1596047920631,"stop":1596047920632,"duration":1}},{"uid":"8d0ef96cb00535e2","status":"passed","time":{"start":1596005120516,"stop":1596005120519,"duration":3}},{"uid":"933f81762d8af8fe","status":"passed","time":{"start":1594531285451,"stop":1594531285452,"duration":1}},{"uid":"671372ae37f34d63","status":"passed","time":{"start":1594163430925,"stop":1594163430927,"duration":2}},{"uid":"982672c4ebddedc8","status":"passed","time":{"start":1594163037171,"stop":1594163037172,"duration":1}}]},"d8ed55046475c7e2ae8edf6bff7b1316":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"521b14729542d5c4","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}}]},"dc079813fc553d210a3def6568230a25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2ed8dfd7ca5a3d13","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}}]},"aa9027133335818366e5c0c91c936279":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"7fcdfe6224a9c1bf62e1c03968cb029e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5ef0ca25b0e8e9c5","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"0a8e4dfe9eaf7b2cb8926113088e5d0a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b43c16d06b3f5808","status":"passed","time":{"start":1596047924196,"stop":1596047924197,"duration":1}},{"uid":"3fc3fc4f42d1272b","status":"passed","time":{"start":1596005124299,"stop":1596005124300,"duration":1}},{"uid":"e4d6d5c0c01b7e82","status":"passed","time":{"start":1594531289130,"stop":1594531289131,"duration":1}},{"uid":"c97d4431cefe2d16","status":"passed","time":{"start":1594163434633,"stop":1594163434634,"duration":1}},{"uid":"30b331f3adf439b0","status":"passed","time":{"start":1594163041021,"stop":1594163041022,"duration":1}}]},"52e12c4648d8f4cf01926e8778370133":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"41cba8aef9bbe904","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047923345,"stop":1596047923345,"duration":0}},{"uid":"5650c62a08c1f6cd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005123353,"stop":1596005123353,"duration":0}},{"uid":"739a912f797e0e0f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531288265,"stop":1594531288265,"duration":0}},{"uid":"4c4358080d3078b1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163433789,"stop":1594163433789,"duration":0}},{"uid":"4e4137053ca560a7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163040268,"stop":1594163040268,"duration":0}}]},"9398abf0c9f75b70331fc87dcc2b8a7f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"05bf5c98a76bc70a52e8a5ca13268eab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5951612733ac0cb9","status":"passed","time":{"start":1596047924556,"stop":1596047924556,"duration":0}},{"uid":"f21937cfbbaae25","status":"passed","time":{"start":1596005124660,"stop":1596005124663,"duration":3}},{"uid":"5d58b1a7218109b5","status":"passed","time":{"start":1594531289543,"stop":1594531289544,"duration":1}},{"uid":"671f6a4d68ab0df2","status":"passed","time":{"start":1594163434975,"stop":1594163434976,"duration":1}},{"uid":"7353760a04f5d0d1","status":"passed","time":{"start":1594163041373,"stop":1594163041374,"duration":1}}]},"86179f9249a59de428ee775697f09532":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2a7d968ac3eed20b","status":"passed","time":{"start":1596047923796,"stop":1596047923797,"duration":1}},{"uid":"968dd33eab30cf89","status":"passed","time":{"start":1596005123828,"stop":1596005123829,"duration":1}},{"uid":"76a1aaf0a3f58f4d","status":"passed","time":{"start":1594531288741,"stop":1594531288742,"duration":1}},{"uid":"7c0c70247f667c0","status":"passed","time":{"start":1594163434201,"stop":1594163434202,"duration":1}},{"uid":"a8acd0468acfc37a","status":"passed","time":{"start":1594163040633,"stop":1594163040634,"duration":1}}]},"1b4dd61e36f8ec4ee2f83635d4e16e21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"cafc6fc0abfb11e9cfca8d11aa0fa441":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ed784be3e1822657","status":"passed","time":{"start":1596047924475,"stop":1596047924479,"duration":4}},{"uid":"8bccd3aa4e3f8054","status":"passed","time":{"start":1596005124583,"stop":1596005124584,"duration":1}},{"uid":"6d1cb4b174edb98f","status":"passed","time":{"start":1594531289445,"stop":1594531289446,"duration":1}},{"uid":"5ea24fe45dd3e1e9","status":"passed","time":{"start":1594163434899,"stop":1594163434900,"duration":1}},{"uid":"d96c17c5a0753288","status":"passed","time":{"start":1594163041289,"stop":1594163041290,"duration":1}}]},"ef9f0d6b554a403890075cafa527f60a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"d497c596f93571336a07dc34f8bfbb15":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ccd7de56a4099f36","status":"passed","time":{"start":1596047920326,"stop":1596047920329,"duration":3}},{"uid":"239bd4b3a01bc27d","status":"passed","time":{"start":1596005120225,"stop":1596005120226,"duration":1}},{"uid":"3f52e197b202f8ac","status":"passed","time":{"start":1594531285193,"stop":1594531285196,"duration":3}},{"uid":"ffe2375a75a66e62","status":"passed","time":{"start":1594163430669,"stop":1594163430671,"duration":2}},{"uid":"e525cd6e49d06aa3","status":"passed","time":{"start":1594163036892,"stop":1594163036894,"duration":2}}]},"42b548c0db1df4ee811cd611dd0f3fb5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f272a61ddd3e6c22","status":"passed","time":{"start":1596047923420,"stop":1596047923422,"duration":2}},{"uid":"fe099401a3554dbb","status":"passed","time":{"start":1596005123416,"stop":1596005123417,"duration":1}},{"uid":"ae3562fc0808791d","status":"passed","time":{"start":1594531288343,"stop":1594531288344,"duration":1}},{"uid":"787b50b67714584a","status":"passed","time":{"start":1594163433837,"stop":1594163433839,"duration":2}},{"uid":"cc9da8d77d6e39cf","status":"passed","time":{"start":1594163040320,"stop":1594163040322,"duration":2}}]},"ae3e8fd54712dd8496499b7bc14e7226":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"7d6726eaa46b88e072d1737308714f4e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e5a675ad44e68491","status":"passed","time":{"start":1596047920309,"stop":1596047920310,"duration":1}},{"uid":"e479f3c1d382a28c","status":"passed","time":{"start":1596005120198,"stop":1596005120200,"duration":2}},{"uid":"c0b164673bf3c82b","status":"passed","time":{"start":1594531285169,"stop":1594531285170,"duration":1}},{"uid":"68ec38806a2cd925","status":"passed","time":{"start":1594163430649,"stop":1594163430650,"duration":1}},{"uid":"9f994ed97de7687b","status":"passed","time":{"start":1594163036873,"stop":1594163036874,"duration":1}}]},"fc9a702ca5c19210ede805fc9e7cf90c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3da16b28e7f4cfc7","status":"passed","time":{"start":1596047924046,"stop":1596047924047,"duration":1}},{"uid":"5a652a6c263222b6","status":"passed","time":{"start":1596005124140,"stop":1596005124141,"duration":1}},{"uid":"5b2a78b35171f42d","status":"passed","time":{"start":1594531288986,"stop":1594531288987,"duration":1}},{"uid":"275ecc22360d91d6","status":"passed","time":{"start":1594163434485,"stop":1594163434486,"duration":1}},{"uid":"e8a6bfbb71f53345","status":"passed","time":{"start":1594163040859,"stop":1594163040860,"duration":1}}]},"dcabd02011959f0337d9098678ad990d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"80fa996da1344642e95c3c1d2f315df1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"161a43e9e1a5a89bd5102282ce0a8c54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":14,"unknown":0,"total":14},"items":[{"uid":"ab747b5869b404ca","status":"passed","time":{"start":1596047919264,"stop":1596047919268,"duration":4}},{"uid":"edb0d9bfe101f9dc","status":"passed","time":{"start":1596005119282,"stop":1596005119285,"duration":3}},{"uid":"2c1d5bfd8e28c76b","status":"passed","time":{"start":1594531284186,"stop":1594531284188,"duration":2}},{"uid":"ff5b0bbf7bff148f","status":"passed","time":{"start":1594163429754,"stop":1594163429755,"duration":1}},{"uid":"99a06d0e6864000b","status":"passed","time":{"start":1594163035939,"stop":1594163035947,"duration":8}}]},"2cb427f82db56166295274f89427b370":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5ffbd011186f0c0b","status":"passed","time":{"start":1596047920657,"stop":1596047920664,"duration":7}},{"uid":"6695f08a3298a6b0","status":"passed","time":{"start":1596005120545,"stop":1596005120552,"duration":7}},{"uid":"38c868d62fad4f75","status":"passed","time":{"start":1594531285478,"stop":1594531285484,"duration":6}},{"uid":"882a3c012ef28b66","status":"passed","time":{"start":1594163430960,"stop":1594163430968,"duration":8}},{"uid":"dfdd88579a2370f4","status":"passed","time":{"start":1594163037198,"stop":1594163037205,"duration":7}}]},"e15f1973b9fdb38f6fac61e3b46f93cc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"941f95519b8a2760d5d87e88d375511f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"df1a6e2728b6c2ba","status":"passed","time":{"start":1596047924118,"stop":1596047924119,"duration":1}},{"uid":"a2e88b1f5321c6e6","status":"passed","time":{"start":1596005124214,"stop":1596005124215,"duration":1}},{"uid":"3375d65369f2909a","status":"passed","time":{"start":1594531289052,"stop":1594531289053,"duration":1}},{"uid":"c2ea749412e943c0","status":"passed","time":{"start":1594163434557,"stop":1594163434558,"duration":1}},{"uid":"bc90e79697b04699","status":"passed","time":{"start":1594163040943,"stop":1594163040944,"duration":1}}]},"7fbc65fe31554720c70d1027b5a5aaf6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"86b431e3074334a7","status":"passed","time":{"start":1596047924652,"stop":1596047924654,"duration":2}},{"uid":"7e89c37648c19a41","status":"passed","time":{"start":1596005124782,"stop":1596005124783,"duration":1}},{"uid":"9cbcc9a1ef853dd7","status":"passed","time":{"start":1594531289664,"stop":1594531289665,"duration":1}},{"uid":"97971de30bfd7627","status":"passed","time":{"start":1594163435075,"stop":1594163435075,"duration":0}},{"uid":"794e47e81d3caebf","status":"passed","time":{"start":1594163041488,"stop":1594163041489,"duration":1}}]},"72a2d75b45f09e520765f369cfc2bc8f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"f6abc3263260f9b09426d486c18b1d1c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ae11fee7650ad13c","status":"passed","time":{"start":1596047924638,"stop":1596047924638,"duration":0}},{"uid":"ec0b9d2ff15e059e","status":"passed","time":{"start":1596005124753,"stop":1596005124756,"duration":3}},{"uid":"19a638a8db7fc515","status":"passed","time":{"start":1594531289646,"stop":1594531289647,"duration":1}},{"uid":"17c5dee327b3fd1c","status":"passed","time":{"start":1594163435062,"stop":1594163435063,"duration":1}},{"uid":"ee728fb3ef26d4b2","status":"passed","time":{"start":1594163041474,"stop":1594163041475,"duration":1}}]},"04bb543ec741bd163e341a33a1623692":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"4e8f158d2e887eb45841e908801e1bfa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1941721193cce28a","status":"passed","time":{"start":1596047919676,"stop":1596047919931,"duration":255}},{"uid":"732fcaf6e51ca4a","status":"passed","time":{"start":1596005119641,"stop":1596005119896,"duration":255}},{"uid":"567c1788ec42c341","status":"passed","time":{"start":1594531284550,"stop":1594531284797,"duration":247}},{"uid":"f36d1240b1684708","status":"passed","time":{"start":1594163430088,"stop":1594163430320,"duration":232}},{"uid":"e5c8d52471fa7f23","status":"passed","time":{"start":1594163036307,"stop":1594163036539,"duration":232}}]},"2e669f0529d36ab8d3f8a8bda96b4165":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e47d01d6abb5814e","status":"passed","time":{"start":1596047923263,"stop":1596047923264,"duration":1}},{"uid":"45b6c100df7805e3","status":"passed","time":{"start":1596005123260,"stop":1596005123261,"duration":1}},{"uid":"5876876ae43b4a8a","status":"passed","time":{"start":1594531288192,"stop":1594531288193,"duration":1}},{"uid":"ba06eb32053ff48b","status":"passed","time":{"start":1594163433722,"stop":1594163433723,"duration":1}},{"uid":"e40e9c5dc2dbbc4","status":"passed","time":{"start":1594163040188,"stop":1594163040189,"duration":1}}]},"7ee6731933bd9dff6fabc41830db1bf0":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"a064a48d91c28f13","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"9f2093620517aae286b85ccc9f40b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"e2716f691be2a9d6b5fd30d66b1f784d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"e4a3219ae28469fc10d020cba24dd0dd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4e3518fb96f2d3b2","status":"passed","time":{"start":1596047920420,"stop":1596047920421,"duration":1}},{"uid":"6db01be431478f6a","status":"passed","time":{"start":1596005120319,"stop":1596005120320,"duration":1}},{"uid":"bd5ea58390f0a292","status":"passed","time":{"start":1594531285272,"stop":1594531285274,"duration":2}},{"uid":"8be8de5c8172e09b","status":"passed","time":{"start":1594163430739,"stop":1594163430740,"duration":1}},{"uid":"c996edcdf3d76d50","status":"passed","time":{"start":1594163036971,"stop":1594163036972,"duration":1}}]},"e52a4070adc4c9a5f7d9d15dc00dcd29":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"55638bba0759cb56","status":"passed","time":{"start":1596047923748,"stop":1596047923748,"duration":0}},{"uid":"62d5569b0cdd4875","status":"passed","time":{"start":1596005123782,"stop":1596005123783,"duration":1}},{"uid":"b732ea427fd44461","status":"passed","time":{"start":1594531288698,"stop":1594531288699,"duration":1}},{"uid":"717cb846ad5d46e","status":"passed","time":{"start":1594163434128,"stop":1594163434129,"duration":1}},{"uid":"16c3317126c9fbbc","status":"passed","time":{"start":1594163040592,"stop":1594163040593,"duration":1}}]},"301a4a5c6feaafe2de82b5b9900cd661":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ad3f08ee8482dbb3","status":"passed","time":{"start":1596047924645,"stop":1596047924645,"duration":0}},{"uid":"c50a7d17debdafc4","status":"passed","time":{"start":1596005124774,"stop":1596005124775,"duration":1}},{"uid":"613437d5b4c37efc","status":"passed","time":{"start":1594531289656,"stop":1594531289657,"duration":1}},{"uid":"4dc4edca45be600b","status":"passed","time":{"start":1594163435068,"stop":1594163435068,"duration":0}},{"uid":"e3639c83e28d56e9","status":"passed","time":{"start":1594163041481,"stop":1594163041482,"duration":1}}]},"5ec88dd2e1061775d1a54f008e35ffe5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"371bb28917263447","status":"passed","time":{"start":1596047923712,"stop":1596047923713,"duration":1}},{"uid":"945e602090de2952","status":"passed","time":{"start":1596005123746,"stop":1596005123748,"duration":2}},{"uid":"c76e88266fe8513e","status":"passed","time":{"start":1594531288652,"stop":1594531288653,"duration":1}},{"uid":"a12f02d97bfbdaf7","status":"passed","time":{"start":1594163434093,"stop":1594163434095,"duration":2}},{"uid":"4ded9c018409dec5","status":"passed","time":{"start":1594163040563,"stop":1594163040564,"duration":1}}]},"0b77c06fac1d0dda8fc01f3391f08471":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a3a31a9b373fe696","status":"passed","time":{"start":1596047924320,"stop":1596047924321,"duration":1}},{"uid":"a42fd1b52c788a43","status":"passed","time":{"start":1596005124421,"stop":1596005124423,"duration":2}},{"uid":"e0559ccad83713c8","status":"passed","time":{"start":1594531289260,"stop":1594531289261,"duration":1}},{"uid":"f9618f1299802d13","status":"passed","time":{"start":1594163434747,"stop":1594163434748,"duration":1}},{"uid":"60f573137e6be93b","status":"passed","time":{"start":1594163041136,"stop":1594163041137,"duration":1}}]},"3d20cddd76e145acdf8951f93bbd7aca":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"96ad66d817d9d01","status":"passed","time":{"start":1596047924137,"stop":1596047924139,"duration":2}},{"uid":"12377738ed99b4e7","status":"passed","time":{"start":1596005124234,"stop":1596005124236,"duration":2}},{"uid":"1a572099bd87c4ff","status":"passed","time":{"start":1594531289071,"stop":1594531289073,"duration":2}},{"uid":"d1964b006528dba7","status":"passed","time":{"start":1594163434576,"stop":1594163434577,"duration":1}},{"uid":"9d18077ad676acbb","status":"passed","time":{"start":1594163040961,"stop":1594163040964,"duration":3}}]},"4837bd231004cf7ec289887c52c12796":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"4d406a702da9fd827c8c4798d255a6cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"be99c6f72cdf623836966737dcb7a654":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"7c48f5c6aa887d1bc76d081b028cf7cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"d4bb68fb8c0e59fc03fed525cca43eb5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"4f7c4b258ce2dd212abc76d538a956bd":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"900ed6bd99df3d56","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"44269ffb9aeaecd9b9cb3579ebfafa33":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":19,"unknown":0,"total":19},"items":[{"uid":"79f88c515080eaf0","status":"passed","time":{"start":1596047923899,"stop":1596047923900,"duration":1}},{"uid":"7342fa1ab12766d","status":"passed","time":{"start":1596005123934,"stop":1596005123936,"duration":2}},{"uid":"8e391f54d7032875","status":"passed","time":{"start":1594531288830,"stop":1594531288832,"duration":2}},{"uid":"f46bcb027664cf43","status":"passed","time":{"start":1594163434302,"stop":1594163434304,"duration":2}},{"uid":"cc5186acdd230ef2","status":"passed","time":{"start":1594163040716,"stop":1594163040717,"duration":1}}]},"fcd618577998a86f372b0608156ae679":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"769ac601b16802cc","status":"passed","time":{"start":1596047923875,"stop":1596047923876,"duration":1}},{"uid":"8ade1a4ed229c183","status":"passed","time":{"start":1596005123909,"stop":1596005123910,"duration":1}},{"uid":"f4445efd3f03b6ac","status":"passed","time":{"start":1594531288811,"stop":1594531288812,"duration":1}},{"uid":"a689309bcbef2944","status":"passed","time":{"start":1594163434277,"stop":1594163434278,"duration":1}},{"uid":"537f31bc291596c7","status":"passed","time":{"start":1594163040695,"stop":1594163040696,"duration":1}}]},"dd45bde8a5798bd4dac8809e8aa8206c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"66511dda8143933e","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"6753f1fa7219c8cb1c1cfd633e3291ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"33a9357aa53f398b","status":"passed","time":{"start":1596047924382,"stop":1596047924383,"duration":1}},{"uid":"c665ad0a0e6c711d","status":"passed","time":{"start":1596005124486,"stop":1596005124487,"duration":1}},{"uid":"f218d7354c801b8e","status":"passed","time":{"start":1594531289330,"stop":1594531289331,"duration":1}},{"uid":"804d243cf20fb592","status":"passed","time":{"start":1594163434803,"stop":1594163434804,"duration":1}},{"uid":"57fbb6cfee6391bf","status":"passed","time":{"start":1594163041193,"stop":1594163041194,"duration":1}}]},"c07c7cb9e4aa2b6b273c9327f48ca674":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"fed42f6855f5f40945177fa4c23f0f10":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c56c5e45a02efbb2","status":"passed","time":{"start":1596047923566,"stop":1596047923569,"duration":3}},{"uid":"6529db7b1ff7aad9","status":"passed","time":{"start":1596005123578,"stop":1596005123582,"duration":4}},{"uid":"27045d81bffc6b89","status":"passed","time":{"start":1594531288509,"stop":1594531288513,"duration":4}},{"uid":"e4330e446bec81c2","status":"passed","time":{"start":1594163433963,"stop":1594163433968,"duration":5}},{"uid":"1f375106e30801d1","status":"passed","time":{"start":1594163040441,"stop":1594163040443,"duration":2}}]},"0f9fe14df4043e3026ded68af344e3f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"b5060eb4345bb1fe079895175d656cb8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6db30c4ff5c46df7","status":"passed","time":{"start":1596047920279,"stop":1596047920280,"duration":1}},{"uid":"bf01c1cf3a02fe61","status":"passed","time":{"start":1596005120178,"stop":1596005120179,"duration":1}},{"uid":"898fe1232be29d1f","status":"passed","time":{"start":1594531285142,"stop":1594531285144,"duration":2}},{"uid":"97d7e6522c252b56","status":"passed","time":{"start":1594163430629,"stop":1594163430630,"duration":1}},{"uid":"7deee5701b71c0b1","status":"passed","time":{"start":1594163036850,"stop":1594163036852,"duration":2}}]},"da381d769d9c85b15441af4ada467c58":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"51966bed69fa2237","status":"passed","time":{"start":1596047923958,"stop":1596047923959,"duration":1}},{"uid":"1c066221956be17","status":"passed","time":{"start":1596005124034,"stop":1596005124035,"duration":1}},{"uid":"6212488cfd2a4684","status":"passed","time":{"start":1594531288891,"stop":1594531288892,"duration":1}},{"uid":"6fbf63bbaf63780b","status":"passed","time":{"start":1594163434379,"stop":1594163434381,"duration":2}},{"uid":"101888eedff2506d","status":"passed","time":{"start":1594163040774,"stop":1594163040774,"duration":0}}]},"cff7d7f7b55b35458669cd92cb129d06":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"2dc5f3dd0a3e6e7beee8f439047c4032":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"73d92f8f0c07772d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"7cff1d7692fe8bf77b7f716ce4e74775":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e95cacac5e122c","status":"passed","time":{"start":1596047920614,"stop":1596047920615,"duration":1}},{"uid":"6a8ebf1d563b029","status":"passed","time":{"start":1596005120508,"stop":1596005120510,"duration":2}},{"uid":"76119461e6bbe7b5","status":"passed","time":{"start":1594531285444,"stop":1594531285445,"duration":1}},{"uid":"8ae0c921930f3997","status":"passed","time":{"start":1594163430915,"stop":1594163430916,"duration":1}},{"uid":"3b689712ade903e1","status":"passed","time":{"start":1594163037159,"stop":1594163037162,"duration":3}}]},"f9568f445cf6471d62f38f61a6e1887d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a83637127d81f7d9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"12f0f975ccfd38a2860e83db6017e19f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"3ade0b8dc3a70452a99ea470cea361ac":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"89f53112353ba49dc8f3a4029d39ba34":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"a6cf7a78113925c8ce86bec289a2189d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c7e18ff4ddc5c92a","status":"passed","time":{"start":1596047924091,"stop":1596047924093,"duration":2}},{"uid":"7b2e4e8402f55302","status":"passed","time":{"start":1596005124192,"stop":1596005124193,"duration":1}},{"uid":"b0cb918932f1257a","status":"passed","time":{"start":1594531289032,"stop":1594531289032,"duration":0}},{"uid":"546cae077bf7ca6a","status":"passed","time":{"start":1594163434534,"stop":1594163434535,"duration":1}},{"uid":"2c43d13401571ecf","status":"passed","time":{"start":1594163040922,"stop":1594163040923,"duration":1}}]},"a1dee0241acea84cdb83fd9eaabd5c04":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c301f45b01d7d10f","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"6738a51245363d65952509f12ebc1af8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4c3877c30e625752","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}}]},"a2426de0b4808429aff451df95bbdc21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"464e445546d6c625c166d17d836fe45c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"16026a681cee6bae","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}}]},"b49a06236d1af1a464e84083e52f6b22":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d65c16a1b47d468e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"c6165a75ca9eea153433d316f4ac3eb9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"93260917d8d1730d","status":"passed","time":{"start":1596047924343,"stop":1596047924344,"duration":1}},{"uid":"c74080002f5998f4","status":"passed","time":{"start":1596005124449,"stop":1596005124450,"duration":1}},{"uid":"7ebd44671756394c","status":"passed","time":{"start":1594531289286,"stop":1594531289286,"duration":0}},{"uid":"e09926b95d980041","status":"passed","time":{"start":1594163434769,"stop":1594163434770,"duration":1}},{"uid":"ca5dbfdf828fd84b","status":"passed","time":{"start":1594163041158,"stop":1594163041159,"duration":1}}]},"faebae956c3da12c5f429266c959c030":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"5ade91fb72a8c6b40f8def4106a376c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1d5767f16afc3bd8","status":"passed","time":{"start":1596047923917,"stop":1596047923918,"duration":1}},{"uid":"e686dcdf2807c271","status":"passed","time":{"start":1596005123957,"stop":1596005123958,"duration":1}},{"uid":"a9361839c25b3e08","status":"passed","time":{"start":1594531288846,"stop":1594531288847,"duration":1}},{"uid":"1c2bfb84e88d2c39","status":"passed","time":{"start":1594163434328,"stop":1594163434329,"duration":1}},{"uid":"996f2e4824ff8649","status":"passed","time":{"start":1594163040732,"stop":1594163040733,"duration":1}}]},"d52901f553e103c17fa73d8148d8b604":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"12e938cceeb3c2541d2a8441fd1037c9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":20,"unknown":0,"total":20},"items":[{"uid":"91f1da3329a1a671","status":"passed","time":{"start":1596047919127,"stop":1596047919129,"duration":2}},{"uid":"41496dbd64dd1c9c","status":"passed","time":{"start":1596005119184,"stop":1596005119186,"duration":2}},{"uid":"cb957225d743894a","status":"passed","time":{"start":1594531284076,"stop":1594531284078,"duration":2}},{"uid":"5e887dd6d7625f8","status":"passed","time":{"start":1594163429645,"stop":1594163429647,"duration":2}},{"uid":"2446a309189eda9d","status":"passed","time":{"start":1594163035809,"stop":1594163035811,"duration":2}}]},"32fca0dba156c29ff0c5aa5efe4a761f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e29672a56bdf38c1","status":"passed","time":{"start":1596047923830,"stop":1596047923831,"duration":1}},{"uid":"801ff19c5bf67125","status":"passed","time":{"start":1596005123859,"stop":1596005123864,"duration":5}},{"uid":"53f1e2f5b475a268","status":"passed","time":{"start":1594531288774,"stop":1594531288775,"duration":1}},{"uid":"22ec47c3f794f2b2","status":"passed","time":{"start":1594163434235,"stop":1594163434235,"duration":0}},{"uid":"d2f81d0cf163dbce","status":"passed","time":{"start":1594163040661,"stop":1594163040662,"duration":1}}]},"250e37eef35f96fa2557cde52e0899db":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d22f747573a022e2","status":"passed","time":{"start":1596047919607,"stop":1596047919610,"duration":3}},{"uid":"16bd58c8b6c3a1e0","status":"passed","time":{"start":1596005119586,"stop":1596005119588,"duration":2}},{"uid":"6dc5fd07ddbfc757","status":"passed","time":{"start":1594531284488,"stop":1594531284489,"duration":1}},{"uid":"7e96f18e152c398","status":"passed","time":{"start":1594163430041,"stop":1594163430041,"duration":0}},{"uid":"65b810d84de0efeb","status":"passed","time":{"start":1594163036257,"stop":1594163036258,"duration":1}}]},"9099ed84dac5ff19b3e1ff40f3781efd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"244ec661f6b4f13e","status":"passed","time":{"start":1596047923760,"stop":1596047923766,"duration":6}},{"uid":"4576ef357da3660a","status":"passed","time":{"start":1596005123794,"stop":1596005123797,"duration":3}},{"uid":"81334e5a4cdd758d","status":"passed","time":{"start":1594531288709,"stop":1594531288711,"duration":2}},{"uid":"480df397e0797521","status":"passed","time":{"start":1594163434139,"stop":1594163434141,"duration":2}},{"uid":"354bf46a9801f24c","status":"passed","time":{"start":1594163040607,"stop":1594163040609,"duration":2}}]},"6f72fd5fb63f9cad16ccb27d6b59b668":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d55a4c35e21d8111","status":"passed","time":{"start":1596047924690,"stop":1596047924692,"duration":2}},{"uid":"f4e853010f35408c","status":"passed","time":{"start":1596005124837,"stop":1596005124838,"duration":1}},{"uid":"2c40e2f3652fc386","status":"passed","time":{"start":1594531289709,"stop":1594531289710,"duration":1}},{"uid":"d3e56ff953e034bc","status":"passed","time":{"start":1594163435112,"stop":1594163435112,"duration":0}},{"uid":"678c65df6866a264","status":"passed","time":{"start":1594163041528,"stop":1594163041528,"duration":0}}]},"81b718c3bba361637ce9ed2266cd30d2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f80f9bf6821c7c25","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"d8680aad50eda2b69694580584e0455f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"08aa958df6a92148f413a19d338a9eb7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e6b94c934c41c63","status":"passed","time":{"start":1596047924514,"stop":1596047924515,"duration":1}},{"uid":"5fe37a0138c46e89","status":"passed","time":{"start":1596005124616,"stop":1596005124619,"duration":3}},{"uid":"a0b77d338096296e","status":"passed","time":{"start":1594531289488,"stop":1594531289490,"duration":2}},{"uid":"636bf20aba05bc6c","status":"passed","time":{"start":1594163434934,"stop":1594163434935,"duration":1}},{"uid":"e8d7973f586e9ccb","status":"passed","time":{"start":1594163041332,"stop":1594163041333,"duration":1}}]},"c421bbdf427fc6e784d70fcb75e166ee":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5c64823a2a73f974","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}}]},"f00dbd2e8a201d8a4d1b6579cc3223ba":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4a8a1e214063ff65","status":"passed","time":{"start":1596047923734,"stop":1596047923735,"duration":1}},{"uid":"186805975928e06a","status":"passed","time":{"start":1596005123766,"stop":1596005123768,"duration":2}},{"uid":"bc6d10b8797a9453","status":"passed","time":{"start":1594531288674,"stop":1594531288676,"duration":2}},{"uid":"fd9fb7a049562c32","status":"passed","time":{"start":1594163434112,"stop":1594163434113,"duration":1}},{"uid":"163db5f277b6af87","status":"passed","time":{"start":1594163040579,"stop":1594163040581,"duration":2}}]},"9f1de1fe45fbdc513df7a1c52ccbe6cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":21,"unknown":0,"total":21},"items":[{"uid":"27b9b90941b4a09d","status":"passed","time":{"start":1596047919314,"stop":1596047919420,"duration":106}},{"uid":"507686eb54f5631d","status":"passed","time":{"start":1596005119328,"stop":1596005119452,"duration":124}},{"uid":"8019875ea2402996","status":"passed","time":{"start":1594531284224,"stop":1594531284357,"duration":133}},{"uid":"a62191f41226c32f","status":"passed","time":{"start":1594163429787,"stop":1594163429916,"duration":129}},{"uid":"c60e547f7d18d710","status":"passed","time":{"start":1594163035983,"stop":1594163036093,"duration":110}}]},"95946a599255beb095c6c7c676174082":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"08d55d87371c9d6a38d501e944ac0b1f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":15,"unknown":0,"total":15},"items":[{"uid":"c162767685f61de7","status":"passed","time":{"start":1596047919110,"stop":1596047919112,"duration":2}},{"uid":"450686303edfc2db","status":"passed","time":{"start":1596005119174,"stop":1596005119175,"duration":1}},{"uid":"8bb392cdc602893a","status":"passed","time":{"start":1594531284064,"stop":1594531284066,"duration":2}},{"uid":"3ac4a46ef24846a9","status":"passed","time":{"start":1594163429634,"stop":1594163429636,"duration":2}},{"uid":"8f5d76af04264041","status":"passed","time":{"start":1594163035798,"stop":1594163035800,"duration":2}}]},"5df41bc58298db69fd38e5f451411b25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"74fbc1afd2c7c344","status":"passed","time":{"start":1596047920639,"stop":1596047920641,"duration":2}},{"uid":"1b4e740d93c8208b","status":"passed","time":{"start":1596005120526,"stop":1596005120527,"duration":1}},{"uid":"1c78a3ca97fda5cc","status":"passed","time":{"start":1594531285458,"stop":1594531285459,"duration":1}},{"uid":"7a4314da211e2744","status":"passed","time":{"start":1594163430936,"stop":1594163430937,"duration":1}},{"uid":"5836c1f244bdbda0","status":"passed","time":{"start":1594163037179,"stop":1594163037180,"duration":1}}]},"6685c18cbd7e0553ec2f8d1307b48808":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"792bfe395a28b94b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919573,"stop":1596047919573,"duration":0}},{"uid":"97f2919ac27afdda","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119564,"stop":1596005119564,"duration":0}},{"uid":"ea482f08a9d34c61","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284465,"stop":1594531284465,"duration":0}},{"uid":"18429a5f8ba1820","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430020,"stop":1594163430020,"duration":0}},{"uid":"e3d7347403a550e9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036237,"stop":1594163036237,"duration":0}}]},"009b1aac11c158282ad25341a25251c6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4534be43bb2e79cb","status":"passed","time":{"start":1596047923774,"stop":1596047923776,"duration":2}},{"uid":"b0fb5d056b3ce31f","status":"passed","time":{"start":1596005123805,"stop":1596005123810,"duration":5}},{"uid":"96c55d143f66294b","status":"passed","time":{"start":1594531288718,"stop":1594531288722,"duration":4}},{"uid":"6c3f4d98661a503e","status":"passed","time":{"start":1594163434177,"stop":1594163434181,"duration":4}},{"uid":"eefe749a429a9068","status":"passed","time":{"start":1594163040617,"stop":1594163040619,"duration":2}}]},"10a3e4c4777cbd9f17c15fd5e6bea5ba":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"90130454fa133eaa","status":"passed","time":{"start":1596047923255,"stop":1596047923257,"duration":2}},{"uid":"429fabd504d68af0","status":"passed","time":{"start":1596005123252,"stop":1596005123253,"duration":1}},{"uid":"1715f0217bf76dc5","status":"passed","time":{"start":1594531288186,"stop":1594531288187,"duration":1}},{"uid":"f3747012913193d5","status":"passed","time":{"start":1594163433716,"stop":1594163433716,"duration":0}},{"uid":"e861a2bd0d0390d7","status":"passed","time":{"start":1594163040182,"stop":1594163040183,"duration":1}}]},"7175898242492ec1d3bdd5698d625ca4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"e2edeca1f212268fe8082320adfcc98c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b3f7088fed8dedd7","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}}]},"9698ab5989e4dd5f129cd455d41d02a9":{"statistic":{"failed":0,"broken":0,"skipped":31,"passed":3,"unknown":0,"total":34},"items":[{"uid":"1066431203872fbe","status":"passed","time":{"start":1596047919174,"stop":1596047919179,"duration":5}},{"uid":"2eefe1c648d463d9","status":"passed","time":{"start":1596005119222,"stop":1596005119223,"duration":1}},{"uid":"4f725a6b8ce2a04a","status":"passed","time":{"start":1594531284126,"stop":1594531284128,"duration":2}},{"uid":"baeb7d882d81dbc7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429690,"stop":1594163429690,"duration":0}},{"uid":"c6d5793582cd48d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035867,"stop":1594163035867,"duration":0}}]},"14f36f48218b5a6c45bb6c1fdb646e2d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4359475f5ec554bd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"c8ef830d4279bee02e53bf3a04349c35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"fbdd2daae3e9a5e6dd05fcb0403a88d1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"66d8a13009f945d9794886c65acfdceb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"84e0330ba9cd1f01","status":"passed","time":{"start":1596047923599,"stop":1596047923600,"duration":1}},{"uid":"5cf309afc9d6e0d1","status":"passed","time":{"start":1596005123635,"stop":1596005123636,"duration":1}},{"uid":"edae067b2ea367b3","status":"passed","time":{"start":1594531288548,"stop":1594531288550,"duration":2}},{"uid":"5e7c21f369ff7f35","status":"passed","time":{"start":1594163433994,"stop":1594163433995,"duration":1}},{"uid":"4680835c89b2540f","status":"passed","time":{"start":1594163040481,"stop":1594163040484,"duration":3}}]},"97004dd24763a55cdf2b4ee4f115bd44":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c7106989a12e3c0a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"db5c81791cace9d397d4337f1f69a0e8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"63f25f39ce9ccdfd","status":"passed","time":{"start":1596047923468,"stop":1596047923470,"duration":2}},{"uid":"c57769319735863a","status":"passed","time":{"start":1596005123469,"stop":1596005123472,"duration":3}},{"uid":"5221347d626053ed","status":"passed","time":{"start":1594531288381,"stop":1594531288382,"duration":1}},{"uid":"923f7d7a94f657f2","status":"passed","time":{"start":1594163433869,"stop":1594163433871,"duration":2}},{"uid":"430c4e65e958cff9","status":"passed","time":{"start":1594163040357,"stop":1594163040359,"duration":2}}]},"6105a97f729c5e36b325cf44492db688":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"f33ef5393ae0b8067a498b7663b7a090":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7bbd91ef770b0a79","status":"passed","time":{"start":1596047919439,"stop":1596047919442,"duration":3}},{"uid":"b108994b21d28e9e","status":"passed","time":{"start":1596005119462,"stop":1596005119464,"duration":2}},{"uid":"72f9cfb3eb7e616a","status":"passed","time":{"start":1594531284366,"stop":1594531284373,"duration":7}},{"uid":"42f05ccc173e452d","status":"passed","time":{"start":1594163429926,"stop":1594163429928,"duration":2}},{"uid":"30281d7f1737563b","status":"passed","time":{"start":1594163036104,"stop":1594163036109,"duration":5}}]},"15c98dd02f856858ef67a88bd3c8ad78":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"83b78a44a84315eae8c56a708925a03e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"9af049da90f73c206ca7e8b1362e502f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"b1ff2214ba100eb1c8bc62e73e12889e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"9cb38a55c7ac06311e8c5af89695fec1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d36b734326a418ad","status":"passed","time":{"start":1596047924708,"stop":1596047924709,"duration":1}},{"uid":"d571a1a111e792e9","status":"passed","time":{"start":1596005124867,"stop":1596005124868,"duration":1}},{"uid":"a287c9ffdbd24ff2","status":"passed","time":{"start":1594531289732,"stop":1594531289734,"duration":2}},{"uid":"c408ef07d0a5878d","status":"passed","time":{"start":1594163435130,"stop":1594163435131,"duration":1}},{"uid":"d11aa2f432bcaf9f","status":"passed","time":{"start":1594163041548,"stop":1594163041550,"duration":2}}]},"27ca516382a0a79e50821018f1f7db16":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"704fccc514ead891","status":"passed","time":{"start":1596047924664,"stop":1596047924664,"duration":0}},{"uid":"d25650a111e275c2","status":"passed","time":{"start":1596005124797,"stop":1596005124798,"duration":1}},{"uid":"a9c947811351a831","status":"passed","time":{"start":1594531289676,"stop":1594531289677,"duration":1}},{"uid":"84b89d1478e898eb","status":"passed","time":{"start":1594163435085,"stop":1594163435086,"duration":1}},{"uid":"54f06ea08d3ef59f","status":"passed","time":{"start":1594163041499,"stop":1594163041500,"duration":1}}]},"d35757cf261e283f5eab532965102602":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"cd298347a8b67e93","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"135e62f837ca5fe30ddfd2ad875e089b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"dbfdd0ff8a8cc0d1cb832a52d018d2c3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"555f2ae99e88223f","status":"passed","time":{"start":1596047924247,"stop":1596047924248,"duration":1}},{"uid":"7d3c6e86d66150b0","status":"passed","time":{"start":1596005124356,"stop":1596005124357,"duration":1}},{"uid":"f7859e15b1d88cf5","status":"passed","time":{"start":1594531289180,"stop":1594531289181,"duration":1}},{"uid":"2c2254bee94df466","status":"passed","time":{"start":1594163434684,"stop":1594163434684,"duration":0}},{"uid":"1eb6c29de159ceb7","status":"passed","time":{"start":1594163041073,"stop":1594163041073,"duration":0}}]},"3b3f116ec3ac1abf551a51811b4a8900":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"4a5a43052562dd414ee61f42d2c7c5ec":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7fca6145e90132ab","status":"passed","time":{"start":1596047923938,"stop":1596047923939,"duration":1}},{"uid":"36a3256a0670b06b","status":"passed","time":{"start":1596005123985,"stop":1596005123987,"duration":2}},{"uid":"7fe50fe13c5982b7","status":"passed","time":{"start":1594531288869,"stop":1594531288870,"duration":1}},{"uid":"21939bc32d9b9076","status":"passed","time":{"start":1594163434355,"stop":1594163434357,"duration":2}},{"uid":"91dce38bf470986f","status":"passed","time":{"start":1594163040754,"stop":1594163040754,"duration":0}}]},"49ea03f1d04a92057a336da49714852c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"92a6b9b00e546e915443c0211e09039f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"875ea8f4a3a48bc5","status":"passed","time":{"start":1596047924440,"stop":1596047924441,"duration":1}},{"uid":"c174b7271b942905","status":"passed","time":{"start":1596005124544,"stop":1596005124545,"duration":1}},{"uid":"a6e4ed2e92f7ef3e","status":"passed","time":{"start":1594531289398,"stop":1594531289399,"duration":1}},{"uid":"e0c3556ba8b40144","status":"passed","time":{"start":1594163434860,"stop":1594163434861,"duration":1}},{"uid":"661d7decec1fb7ac","status":"passed","time":{"start":1594163041250,"stop":1594163041253,"duration":3}}]},"9b47b9a348154b928806f22a25ae3898":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"271246de29c45f75","status":"passed","time":{"start":1596047923528,"stop":1596047923530,"duration":2}},{"uid":"a825cb078a9ced4d","status":"passed","time":{"start":1596005123544,"stop":1596005123545,"duration":1}},{"uid":"ecdb8281b6e9ef0","status":"passed","time":{"start":1594531288459,"stop":1594531288460,"duration":1}},{"uid":"67eba59140f32f8e","status":"passed","time":{"start":1594163433918,"stop":1594163433920,"duration":2}},{"uid":"a88af5080fb72dc5","status":"passed","time":{"start":1594163040411,"stop":1594163040412,"duration":1}}]},"ea802d18b118f621c35bcaf8644d85ff":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"ad08cb0fb6eef203","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"ab77fbd355109755607b6e3c87a6be3f":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"1bd7db8399d4c89c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919100,"stop":1596047919100,"duration":0}},{"uid":"acb90d2bb2f76e73","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119165,"stop":1596005119165,"duration":0}},{"uid":"86f81415c55842e0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284055,"stop":1594531284055,"duration":0}},{"uid":"906beb5475a53f82","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429626,"stop":1594163429626,"duration":0}},{"uid":"353d2333be3e9c41","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035789,"stop":1594163035789,"duration":0}}]},"83e4e6be114ce08accb7c97a7d1dbc25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":32,"unknown":0,"total":32},"items":[{"uid":"6981e4a9cd7725ad","status":"passed","time":{"start":1596047923358,"stop":1596047923361,"duration":3}},{"uid":"681a551f5e814022","status":"passed","time":{"start":1596005123364,"stop":1596005123370,"duration":6}},{"uid":"f86bed52bda14f7f","status":"passed","time":{"start":1594531288276,"stop":1594531288278,"duration":2}},{"uid":"2e22ab44b6d35842","status":"passed","time":{"start":1594163433798,"stop":1594163433799,"duration":1}},{"uid":"9350cea19614044c","status":"passed","time":{"start":1594163040281,"stop":1594163040282,"duration":1}}]},"72efc7215c109ad8d2ead7421a0e93d7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"236a3a1194c17ffc","status":"passed","time":{"start":1596047923989,"stop":1596047923990,"duration":1}},{"uid":"b7b9c4a536e61701","status":"passed","time":{"start":1596005124075,"stop":1596005124076,"duration":1}},{"uid":"7f581f67ae5cf439","status":"passed","time":{"start":1594531288926,"stop":1594531288930,"duration":4}},{"uid":"65c627440da53fe0","status":"passed","time":{"start":1594163434420,"stop":1594163434421,"duration":1}},{"uid":"8c97e5d5ef7c6cf1","status":"passed","time":{"start":1594163040804,"stop":1594163040808,"duration":4}}]},"8a1027b0cee356a496b84c6b832d107b":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"3edaeb1c9114b312","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"5f67db9e62ff366c91cf9e618b2ccbe9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a99c454398f1512b","status":"passed","time":{"start":1596047920594,"stop":1596047920596,"duration":2}},{"uid":"2d1e96ae15c79dd1","status":"passed","time":{"start":1596005120491,"stop":1596005120493,"duration":2}},{"uid":"8029aeff17b58c48","status":"passed","time":{"start":1594531285430,"stop":1594531285431,"duration":1}},{"uid":"2b46a9d31d8a4cb8","status":"passed","time":{"start":1594163430895,"stop":1594163430897,"duration":2}},{"uid":"c5105828d947951e","status":"passed","time":{"start":1594163037141,"stop":1594163037143,"duration":2}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7f4f9e94ec6d4f1e","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}}]},"c060fb3e36725c887b4b4edce83f7142":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"44ae966390833a332245c1886323c559":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"f3667cd9a93528eccefa1ce200cedfa2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"93b3042e12ae0dc2","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"ae9f1c7144f190a45c9004337fcb4653":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2402f0c3d40dfcda","status":"passed","time":{"start":1596047924104,"stop":1596047924105,"duration":1}},{"uid":"4c9eb72a21facf1b","status":"passed","time":{"start":1596005124198,"stop":1596005124200,"duration":2}},{"uid":"e291eebf54e3fc3c","status":"passed","time":{"start":1594531289039,"stop":1594531289039,"duration":0}},{"uid":"a9b17872acf68bc1","status":"passed","time":{"start":1594163434541,"stop":1594163434543,"duration":2}},{"uid":"bca6f945f3b8d648","status":"passed","time":{"start":1594163040929,"stop":1594163040930,"duration":1}}]},"091766acae8ef4d7d5217aaea368a8e4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5c39f637c5c8533","status":"passed","time":{"start":1596047924561,"stop":1596047924562,"duration":1}},{"uid":"8249f8668b73d087","status":"passed","time":{"start":1596005124671,"stop":1596005124672,"duration":1}},{"uid":"8bba272cb3a2ae39","status":"passed","time":{"start":1594531289549,"stop":1594531289550,"duration":1}},{"uid":"5634be4598e9e785","status":"passed","time":{"start":1594163434982,"stop":1594163434983,"duration":1}},{"uid":"b57f29a037978a24","status":"passed","time":{"start":1594163041381,"stop":1594163041381,"duration":0}}]},"64d02b3be7358667808060e04863e8f8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"6cf6bc56f20bd3700d55931d5e6413d6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"51e6bd427dc9b9c1","status":"passed","time":{"start":1596047924589,"stop":1596047924590,"duration":1}},{"uid":"1e886ff47a6f71fb","status":"passed","time":{"start":1596005124699,"stop":1596005124701,"duration":2}},{"uid":"57349c34d0e422cc","status":"passed","time":{"start":1594531289583,"stop":1594531289584,"duration":1}},{"uid":"95225c8fac45fd6e","status":"passed","time":{"start":1594163435009,"stop":1594163435011,"duration":2}},{"uid":"2a6f34d3052b3359","status":"passed","time":{"start":1594163041414,"stop":1594163041416,"duration":2}}]},"8bd060c53cf4d8d2cbc13d7ab631b0a5":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"d6e0161287e241bc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047920230,"stop":1596047920230,"duration":0}},{"uid":"65b32be554e4d48d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005120139,"stop":1596005120139,"duration":0}},{"uid":"99e543001489d328","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531285098,"stop":1594531285098,"duration":0}},{"uid":"85c8494aca63d8f3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430593,"stop":1594163430593,"duration":0}},{"uid":"fa7fd4c7f9517277","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036810,"stop":1594163036810,"duration":0}}]},"cb77631a44bdd00f9fa7fbe845b21048":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"257a5ad111bd69a7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}}]},"e4b3b27b629bbd5f25abab144f66de37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"e4c0a34580af7574c8114f42e844d6e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5e5e1beb42c655c1","status":"passed","time":{"start":1596047920292,"stop":1596047920293,"duration":1}},{"uid":"25865dd9141414f8","status":"passed","time":{"start":1596005120187,"stop":1596005120189,"duration":2}},{"uid":"11e51199614ecf30","status":"passed","time":{"start":1594531285157,"stop":1594531285158,"duration":1}},{"uid":"34bf94971c8706dc","status":"passed","time":{"start":1594163430639,"stop":1594163430640,"duration":1}},{"uid":"a7b00650560407f0","status":"passed","time":{"start":1594163036860,"stop":1594163036861,"duration":1}}]},"470b5bb32c448e7433bb94b222d4d8b0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"67e76cdedfc887447f9bf949273eaa4d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"84bae0437fc355f7","status":"passed","time":{"start":1596047924008,"stop":1596047924008,"duration":0}},{"uid":"e3b526e7d3e1856f","status":"passed","time":{"start":1596005124093,"stop":1596005124097,"duration":4}},{"uid":"aadb57650165fea4","status":"passed","time":{"start":1594531288948,"stop":1594531288949,"duration":1}},{"uid":"d29636788f1b634e","status":"passed","time":{"start":1594163434440,"stop":1594163434441,"duration":1}},{"uid":"49840c49d3dc4df5","status":"passed","time":{"start":1594163040822,"stop":1594163040823,"duration":1}}]},"4da2baa3326fa793f3d63bc99d5f2feb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"eeb6d8003fb84da5","status":"passed","time":{"start":1596047923996,"stop":1596047923996,"duration":0}},{"uid":"dee07d028d4359df","status":"passed","time":{"start":1596005124082,"stop":1596005124084,"duration":2}},{"uid":"f89ec339e4a95a87","status":"passed","time":{"start":1594531288935,"stop":1594531288938,"duration":3}},{"uid":"a0afb57891278b5b","status":"passed","time":{"start":1594163434428,"stop":1594163434431,"duration":3}},{"uid":"fb4775500302c45c","status":"passed","time":{"start":1594163040812,"stop":1594163040814,"duration":2}}]},"9d8cb8adf1764c55348d349698b938ac":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"2972663ca9fa4b4f0e6ea69060a464d5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"8d90ab9d48fe4a2c33ff1eb2c33878d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5b936c33d7d2f489","status":"passed","time":{"start":1596047923855,"stop":1596047923856,"duration":1}},{"uid":"ebf3dedb3aef741d","status":"passed","time":{"start":1596005123886,"stop":1596005123889,"duration":3}},{"uid":"7e64dc674ec38de9","status":"passed","time":{"start":1594531288796,"stop":1594531288796,"duration":0}},{"uid":"e0732ac1b37ec7d4","status":"passed","time":{"start":1594163434261,"stop":1594163434262,"duration":1}},{"uid":"57e1cce81da32da5","status":"passed","time":{"start":1594163040681,"stop":1594163040682,"duration":1}}]},"195b2d3cd638502ec301b9e9eaa3f969":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3fa15071b1bee987","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"69989f42d0aa6f9c7ee0436ecdc6c290":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9893e03e2d09df18","status":"passed","time":{"start":1596047923270,"stop":1596047923271,"duration":1}},{"uid":"2fc2e58de5a69c5d","status":"passed","time":{"start":1596005123269,"stop":1596005123270,"duration":1}},{"uid":"88a8d546bb766c02","status":"passed","time":{"start":1594531288199,"stop":1594531288199,"duration":0}},{"uid":"a29569319979bca5","status":"passed","time":{"start":1594163433728,"stop":1594163433729,"duration":1}},{"uid":"fd86a8a1610770d","status":"passed","time":{"start":1594163040196,"stop":1594163040196,"duration":0}}]},"15037a348eb4a5d132a73e93b09318c1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"43c0068fe0a1265e","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}}]},"cf653f8242d11085d4f622153d7fc159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"aad04f1b5e9e39d8","status":"passed","time":{"start":1596047919157,"stop":1596047919159,"duration":2}},{"uid":"aec880411ba0cddb","status":"passed","time":{"start":1596005119208,"stop":1596005119210,"duration":2}},{"uid":"f44701d39c934482","status":"passed","time":{"start":1594531284111,"stop":1594531284114,"duration":3}},{"uid":"d23a0aa1acfb0309","status":"passed","time":{"start":1594163429681,"stop":1594163429683,"duration":2}},{"uid":"4b12e90e7152418","status":"passed","time":{"start":1594163035855,"stop":1594163035858,"duration":3}}]},"d078abbf63387d06892c04835cc6719c":{"statistic":{"failed":0,"broken":0,"skipped":1,"passed":0,"unknown":0,"total":1},"items":[{"uid":"92b17e5074e54ef7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"847eae3e1eaee14f2fe40f1a6251d837":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a793b5f0c92cfefb","status":"passed","time":{"start":1596047924697,"stop":1596047924698,"duration":1}},{"uid":"cc8e4fdbc96d5f1e","status":"passed","time":{"start":1596005124848,"stop":1596005124849,"duration":1}},{"uid":"ae3f139eeecbbc7c","status":"passed","time":{"start":1594531289719,"stop":1594531289720,"duration":1}},{"uid":"78455020eac60038","status":"passed","time":{"start":1594163435120,"stop":1594163435120,"duration":0}},{"uid":"33a5bcb67bf1128b","status":"passed","time":{"start":1594163041534,"stop":1594163041535,"duration":1}}]},"861b34050c3ab0a994fa20a6090c5ab5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"ea1dc0619bd3a02faaa893bbdd2df9e7":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"7108cc4142c0c8c8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919074,"stop":1596047919074,"duration":0}},{"uid":"91ce4192ad2da718","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119138,"stop":1596005119138,"duration":0}},{"uid":"15cc6d567c304f3f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284033,"stop":1594531284033,"duration":0}},{"uid":"481ef7e1047b51d0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429605,"stop":1594163429605,"duration":0}},{"uid":"9d2714a9aee9df10","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035766,"stop":1594163035766,"duration":0}}]},"bf296228b1ce2e9fc09084809d398b51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"80bc6ed2cc3578ad","status":"passed","time":{"start":1596047923810,"stop":1596047923813,"duration":3}},{"uid":"9517d3f64f24c32","status":"passed","time":{"start":1596005123842,"stop":1596005123843,"duration":1}},{"uid":"76e860f488125145","status":"passed","time":{"start":1594531288754,"stop":1594531288755,"duration":1}},{"uid":"9ca8e9f11c9caba7","status":"passed","time":{"start":1594163434212,"stop":1594163434213,"duration":1}},{"uid":"66089a255bd64e1e","status":"passed","time":{"start":1594163040644,"stop":1594163040645,"duration":1}}]},"80a58f5ac07043f8cb09293ce5f7bffb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"183bb0973dd8dfca","status":"passed","time":{"start":1596047923682,"stop":1596047923689,"duration":7}},{"uid":"eac7f9f5b72d1287","status":"passed","time":{"start":1596005123710,"stop":1596005123714,"duration":4}},{"uid":"21f37b2069290553","status":"passed","time":{"start":1594531288623,"stop":1594531288624,"duration":1}},{"uid":"469228ea8ecae58a","status":"passed","time":{"start":1594163434064,"stop":1594163434065,"duration":1}},{"uid":"81cb1cf8eaa06e42","status":"passed","time":{"start":1594163040541,"stop":1594163040541,"duration":0}}]},"f9c1f10fe995fd827dbc67efd6c689cb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"6b98c62ee1b1f8e766b65263444ad2e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3bd61bc704b417e2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"47e8749fb79b5ff765dc32c3b5efb2a3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"627a7fd2fe38a284","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"62aa9278ac9540d2bc76e527211fbc5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fbf35f199f9a64a4","status":"passed","time":{"start":1596047924028,"stop":1596047924028,"duration":0}},{"uid":"60485e92c3c7cb1a","status":"passed","time":{"start":1596005124118,"stop":1596005124121,"duration":3}},{"uid":"bd8489581d061430","status":"passed","time":{"start":1594531288968,"stop":1594531288969,"duration":1}},{"uid":"6b256f129d4dfea1","status":"passed","time":{"start":1594163434463,"stop":1594163434464,"duration":1}},{"uid":"d78c3deb4a1879b0","status":"passed","time":{"start":1594163040842,"stop":1594163040843,"duration":1}}]},"ff2324e4a058a6c42486fd5aff532ecf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"802d65ed2f6258aa6cc2b85b4a959181":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ddff492ae54ba3da","status":"passed","time":{"start":1596047924069,"stop":1596047924071,"duration":2}},{"uid":"dd1dc78a28c68e2","status":"passed","time":{"start":1596005124167,"stop":1596005124169,"duration":2}},{"uid":"6be4617795b8f0aa","status":"passed","time":{"start":1594531289006,"stop":1594531289007,"duration":1}},{"uid":"3b8738a1c9b34f0a","status":"passed","time":{"start":1594163434510,"stop":1594163434512,"duration":2}},{"uid":"e9621ce69e2a0fe7","status":"passed","time":{"start":1594163040901,"stop":1594163040902,"duration":1}}]},"f15e0a8d64d59bf97fc275c012d369a8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":13,"unknown":0,"total":13},"items":[{"uid":"b43ceb7c6c1bfc99","status":"passed","time":{"start":1596047923237,"stop":1596047923239,"duration":2}},{"uid":"6441d97d54900ce2","status":"passed","time":{"start":1596005123228,"stop":1596005123231,"duration":3}},{"uid":"7e6fc7dd695808f1","status":"passed","time":{"start":1594531288165,"stop":1594531288167,"duration":2}},{"uid":"75ea1f6cfaeb3ec1","status":"passed","time":{"start":1594163433694,"stop":1594163433695,"duration":1}},{"uid":"e8a3069c57d5ea4d","status":"passed","time":{"start":1594163040162,"stop":1594163040163,"duration":1}}]},"f1e3ad74179a106b1d5dc35a6ffe21fa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"b4a1fa278aa899a374ebad09960e6cca":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"a5611fb8b1fb5387feefaa5aa15546b6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"96778896ddc1a14","status":"passed","time":{"start":1596047924313,"stop":1596047924314,"duration":1}},{"uid":"495e06b95580bb04","status":"passed","time":{"start":1596005124410,"stop":1596005124410,"duration":0}},{"uid":"eeb8315e0f5ac4a9","status":"passed","time":{"start":1594531289252,"stop":1594531289253,"duration":1}},{"uid":"732ef79c632297da","status":"passed","time":{"start":1594163434740,"stop":1594163434741,"duration":1}},{"uid":"92f293ea5632a78","status":"passed","time":{"start":1594163041129,"stop":1594163041130,"duration":1}}]},"2e5f294dd8fbb4489c95b8783fb8e9af":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"3d3e842542b066f3","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"78738f3890470aa4546f32d34629209e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a72ca4497dcb2e3c","status":"passed","time":{"start":1596047924409,"stop":1596047924409,"duration":0}},{"uid":"b3712c3bd4149217","status":"passed","time":{"start":1596005124512,"stop":1596005124512,"duration":0}},{"uid":"89903405c1ec72eb","status":"passed","time":{"start":1594531289355,"stop":1594531289355,"duration":0}},{"uid":"1dcc854c9242537d","status":"passed","time":{"start":1594163434830,"stop":1594163434830,"duration":0}},{"uid":"26db51b612392c3f","status":"passed","time":{"start":1594163041219,"stop":1594163041220,"duration":1}}]},"fa07af113ba280dc5a89690a520b3897":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"89ee625343ed07ab852f830d9cc358b3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"befc81f16d3ea9a4d57ecd3fed78faff":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"c3fa919d9e9cedcce6b3981f2bc7fb4d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8e2fffa4a498dc46","status":"passed","time":{"start":1596047924724,"stop":1596047924725,"duration":1}},{"uid":"57fb6ddd9f1a4eb","status":"passed","time":{"start":1596005124888,"stop":1596005124890,"duration":2}},{"uid":"8c6819ed9030c76c","status":"passed","time":{"start":1594531289755,"stop":1594531289756,"duration":1}},{"uid":"5298ab701e56bc0b","status":"passed","time":{"start":1594163435146,"stop":1594163435147,"duration":1}},{"uid":"225535eb601fe961","status":"passed","time":{"start":1594163041567,"stop":1594163041568,"duration":1}}]},"02fc92d14c7d50d331938e8b8f33dc51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"63786de17daf93c4","status":"passed","time":{"start":1596047923495,"stop":1596047923497,"duration":2}},{"uid":"86e02bb74d59f2ad","status":"passed","time":{"start":1596005123508,"stop":1596005123513,"duration":5}},{"uid":"775f3ca2d510a8de","status":"passed","time":{"start":1594531288414,"stop":1594531288420,"duration":6}},{"uid":"25706472b9e9d3d7","status":"passed","time":{"start":1594163433894,"stop":1594163433895,"duration":1}},{"uid":"26e78ff02ec11a94","status":"passed","time":{"start":1594163040381,"stop":1594163040382,"duration":1}}]},"337f8da3fccb836acfa7a9f697d95259":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"b91c13716f440f33b1f90d86b217b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"be7068cb1056118b9c0776b1d187601d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"2d65aaadaa20d5c2","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"445e559483f8b14171f0e5184823cfdf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2b001b82a9a44fca","status":"passed","time":{"start":1596047920533,"stop":1596047920534,"duration":1}},{"uid":"3b11e07e13d3ceb7","status":"passed","time":{"start":1596005120428,"stop":1596005120429,"duration":1}},{"uid":"4ed0517c8323de09","status":"passed","time":{"start":1594531285376,"stop":1594531285377,"duration":1}},{"uid":"b8ca1a91a6c5803b","status":"passed","time":{"start":1594163430825,"stop":1594163430826,"duration":1}},{"uid":"64f9fd9b4a45eb45","status":"passed","time":{"start":1594163037078,"stop":1594163037079,"duration":1}}]},"9c2d30046a2fe35ee19c9d3833ea20a5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"98b6e3d99f8af220f04f374312a4567e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"27df99bd6f3db0d4","status":"passed","time":{"start":1596047924627,"stop":1596047924629,"duration":2}},{"uid":"81831661c028f2ea","status":"passed","time":{"start":1596005124744,"stop":1596005124745,"duration":1}},{"uid":"cb54be6efed79fff","status":"passed","time":{"start":1594531289634,"stop":1594531289635,"duration":1}},{"uid":"7eaebb9c81694b46","status":"passed","time":{"start":1594163435049,"stop":1594163435050,"duration":1}},{"uid":"516fee30570bc7","status":"passed","time":{"start":1594163041463,"stop":1594163041464,"duration":1}}]},"c589035c90d432fb71a99aec4f56ee9e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"320d1103d3dbdf29707477fbd33340ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"157dfbcbd70e0ae8","status":"passed","time":{"start":1596047919990,"stop":1596047919991,"duration":1}},{"uid":"b455fe137a3ac9fb","status":"passed","time":{"start":1596005119940,"stop":1596005119943,"duration":3}},{"uid":"2abffff8463338b0","status":"passed","time":{"start":1594531284862,"stop":1594531284863,"duration":1}},{"uid":"5214983227835ef7","status":"passed","time":{"start":1594163430370,"stop":1594163430370,"duration":0}},{"uid":"bad12be2c8537603","status":"passed","time":{"start":1594163036592,"stop":1594163036593,"duration":1}}]},"4967a6ca0665c8eeeec85898f8bda8f5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"7090b58c62fab362ad673c85c67765af":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"e6ec784c16dbc0c3ef86eee597ec6160":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"11716ef7fd4ed53d","status":"passed","time":{"start":1596047920245,"stop":1596047920268,"duration":23}},{"uid":"a66f38a212f65b6e","status":"passed","time":{"start":1596005120151,"stop":1596005120167,"duration":16}},{"uid":"399edc331d13ead4","status":"passed","time":{"start":1594531285109,"stop":1594531285129,"duration":20}},{"uid":"9ecdf538824b900c","status":"passed","time":{"start":1594163430602,"stop":1594163430620,"duration":18}},{"uid":"d8199a2f329d2aa5","status":"passed","time":{"start":1594163036821,"stop":1594163036842,"duration":21}}]},"90c584fb46bb23663538e65089b7ace1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6b1620d97187e590","status":"passed","time":{"start":1596047924228,"stop":1596047924229,"duration":1}},{"uid":"733ff9c26a4b1fad","status":"passed","time":{"start":1596005124333,"stop":1596005124334,"duration":1}},{"uid":"6ff69a4d99fed95a","status":"passed","time":{"start":1594531289161,"stop":1594531289162,"duration":1}},{"uid":"ed8a07931fcd3a31","status":"passed","time":{"start":1594163434662,"stop":1594163434663,"duration":1}},{"uid":"c9883eb8310818d0","status":"passed","time":{"start":1594163041052,"stop":1594163041053,"duration":1}}]},"700583de2d2c58034fc3c72a77e01563":{"statistic":{"failed":0,"broken":0,"skipped":12,"passed":0,"unknown":0,"total":12},"items":[{"uid":"f32fb152bb04b45b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919951,"stop":1596047919951,"duration":0}},{"uid":"7ad83f43ff767020","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119912,"stop":1596005119912,"duration":0}},{"uid":"2668c65d993ecd04","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284816,"stop":1594531284816,"duration":0}},{"uid":"f9ba0ca6a1b6fd7e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430340,"stop":1594163430340,"duration":0}},{"uid":"3265d141c7b60261","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036555,"stop":1594163036555,"duration":0}}]},"faf1054cf60e3f1fbb45c8dc0ece579f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"9f3faef7cd6efbe5a04de4e9c02ed5e1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"6425b991e67c97a8570f57948faa913a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":17,"unknown":0,"total":17},"items":[{"uid":"32ad7b2308b9c0ee","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"8e066a7ae3ee527a","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"624a38ce5fbdaed5","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"6536c4d247ae7772","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"f8a5214a59bb6280","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}}]},"18d36227a2f56662bc03f08e05241ec1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"fb3ce43e36479ba0","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"026739760bca73e921f8e5d35d9329cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"6630066bed88b9c8246478bc4b94ac73":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"86ebf5759b2e03b8a14475bf2a646507":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8ab92534c2f98c07","status":"passed","time":{"start":1596047924404,"stop":1596047924404,"duration":0}},{"uid":"d34c158a4d685d71","status":"passed","time":{"start":1596005124506,"stop":1596005124506,"duration":0}},{"uid":"40861c5dacb5fca3","status":"passed","time":{"start":1594531289350,"stop":1594531289350,"duration":0}},{"uid":"8c6d71965de2c6c9","status":"passed","time":{"start":1594163434824,"stop":1594163434824,"duration":0}},{"uid":"b0892f4acd1cdb63","status":"passed","time":{"start":1594163041212,"stop":1594163041213,"duration":1}}]},"0449fb5fc3350d141ce3afd8c69d0de1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d235af1bf67bd9f5","status":"passed","time":{"start":1596047924216,"stop":1596047924217,"duration":1}},{"uid":"b6cb53c08f9e510","status":"passed","time":{"start":1596005124322,"stop":1596005124323,"duration":1}},{"uid":"5d7ddf85737163d2","status":"passed","time":{"start":1594531289151,"stop":1594531289152,"duration":1}},{"uid":"2a2716834eb65a58","status":"passed","time":{"start":1594163434653,"stop":1594163434654,"duration":1}},{"uid":"8795d518278056cc","status":"passed","time":{"start":1594163041042,"stop":1594163041043,"duration":1}}]},"c215cc1af921310dfc963d972f3081c1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"51b7688035f5973b","status":"passed","time":{"start":1596047919464,"stop":1596047919466,"duration":2}},{"uid":"a033b5485d9c243d","status":"passed","time":{"start":1596005119481,"stop":1596005119482,"duration":1}},{"uid":"ee0e93af9bfceef4","status":"passed","time":{"start":1594531284390,"stop":1594531284392,"duration":2}},{"uid":"c0ceb463efcdcca5","status":"passed","time":{"start":1594163429945,"stop":1594163429947,"duration":2}},{"uid":"bb3b3a0de11e6785","status":"passed","time":{"start":1594163036139,"stop":1594163036141,"duration":2}}]},"eb9123a4aa86a26d4fdbf67e2370745f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"15fae8047ca0fd5a3fd5d8163999631a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a36e7f3f488269b3","status":"passed","time":{"start":1596047923842,"stop":1596047923844,"duration":2}},{"uid":"52effcf357771993","status":"passed","time":{"start":1596005123876,"stop":1596005123877,"duration":1}},{"uid":"917217d786d57b05","status":"passed","time":{"start":1594531288784,"stop":1594531288785,"duration":1}},{"uid":"bacaead5358ae167","status":"passed","time":{"start":1594163434246,"stop":1594163434246,"duration":0}},{"uid":"a1882244663764f4","status":"passed","time":{"start":1594163040670,"stop":1594163040671,"duration":1}}]},"a395a9db7232cf7ff71fff0b2b91cd35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dac4a125fdccd43d","status":"passed","time":{"start":1596047924521,"stop":1596047924526,"duration":5}},{"uid":"fc1addfd6f00b00c","status":"passed","time":{"start":1596005124630,"stop":1596005124631,"duration":1}},{"uid":"5efb4d1b47235c16","status":"passed","time":{"start":1594531289502,"stop":1594531289504,"duration":2}},{"uid":"e42faa83fc799357","status":"passed","time":{"start":1594163434944,"stop":1594163434945,"duration":1}},{"uid":"cb7c18cf40dc11a6","status":"passed","time":{"start":1594163041342,"stop":1594163041343,"duration":1}}]},"763475007d09f077c2c251a191291e14":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"4c2585fd6b96cad843a0f2e0303307a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5e31252b7c665242","status":"passed","time":{"start":1596047919652,"stop":1596047919654,"duration":2}},{"uid":"9bfa4c13e3a506f0","status":"passed","time":{"start":1596005119626,"stop":1596005119627,"duration":1}},{"uid":"72f41051e59d9c2","status":"passed","time":{"start":1594531284530,"stop":1594531284531,"duration":1}},{"uid":"eff518e0ecf5002b","status":"passed","time":{"start":1594163430075,"stop":1594163430075,"duration":0}},{"uid":"19f27764a712350c","status":"passed","time":{"start":1594163036289,"stop":1594163036290,"duration":1}}]},"4bc77dd633e396ca329c8c080bc9fdd4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1d66fba071a35b6c","status":"passed","time":{"start":1596047924179,"stop":1596047924179,"duration":0}},{"uid":"f938272e0f17dcf0","status":"passed","time":{"start":1596005124280,"stop":1596005124280,"duration":0}},{"uid":"a5b72a3b95ffe939","status":"passed","time":{"start":1594531289115,"stop":1594531289116,"duration":1}},{"uid":"9c745437af7d407a","status":"passed","time":{"start":1594163434619,"stop":1594163434619,"duration":0}},{"uid":"7a55e5498afe6aa1","status":"passed","time":{"start":1594163041004,"stop":1594163041005,"duration":1}}]},"ca529ab6c57db539179bf256595c3d50":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"5d9c9166bf610b28a284723b5b23aab1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7f2ec06c200d3086","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}}]},"e1a83b5e7221ab7611b800cba5c64efa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"0b4f28ec26521cef2eb63255cb9cd818":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f9c04a3602727acb","status":"passed","time":{"start":1596047920605,"stop":1596047920607,"duration":2}},{"uid":"9090e44c16d7caa","status":"passed","time":{"start":1596005120499,"stop":1596005120501,"duration":2}},{"uid":"69907fdbdf419e57","status":"passed","time":{"start":1594531285437,"stop":1594531285438,"duration":1}},{"uid":"f89cdaccf6fa8e22","status":"passed","time":{"start":1594163430906,"stop":1594163430907,"duration":1}},{"uid":"5053ed702a1b906e","status":"passed","time":{"start":1594163037150,"stop":1594163037151,"duration":1}}]},"69a156fb0b04999e58427537301412d4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"ba750fe79d2038dec72fcf2a01a1e8fb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"64bbfa90baeae597","status":"passed","time":{"start":1596047919481,"stop":1596047919487,"duration":6}},{"uid":"24b12e8137c80e1e","status":"passed","time":{"start":1596005119498,"stop":1596005119504,"duration":6}},{"uid":"1138ef36c023d753","status":"passed","time":{"start":1594531284409,"stop":1594531284413,"duration":4}},{"uid":"8db071f80ee283fe","status":"passed","time":{"start":1594163429963,"stop":1594163429967,"duration":4}},{"uid":"d1ccbe662dab7e1a","status":"passed","time":{"start":1594163036159,"stop":1594163036167,"duration":8}}]},"d356143c6b7ca031162b46798e3eaf1b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"715c14551e27272","status":"passed","time":{"start":1596047919665,"stop":1596047919668,"duration":3}},{"uid":"6d3d114392fadb41","status":"passed","time":{"start":1596005119634,"stop":1596005119635,"duration":1}},{"uid":"c96fa27d7e6ce7f2","status":"passed","time":{"start":1594531284541,"stop":1594531284542,"duration":1}},{"uid":"7880c19b5c2410f7","status":"passed","time":{"start":1594163430081,"stop":1594163430082,"duration":1}},{"uid":"5d34a23c278216c4","status":"passed","time":{"start":1594163036299,"stop":1594163036300,"duration":1}}]},"e1d51bbc08408469e032e2f57944bc05":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c1f2317d20109e13","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}}]},"3d4d9d606fbf24bad8abb0f0f85e6130":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"749ee6e9278a75fb77637153b8003619":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"647dfe698e2a6fdb","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"4d7a6b080aa8dcf06d68a1f957a8e465":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"7d1621a20d6f8fe7","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"9cff2d5d4d73fbc92b1c7c29d738384f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"ec5359964a6a6bc7051957eec5d9455d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f0e71551541527fc","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}}]},"b5a1c5eb9c825db6f453100e4dceac7d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f81d551474e18c5e","status":"passed","time":{"start":1596047919967,"stop":1596047919969,"duration":2}},{"uid":"8d6986ac6e216de1","status":"passed","time":{"start":1596005119923,"stop":1596005119924,"duration":1}},{"uid":"6ebe37257f8b2e7a","status":"passed","time":{"start":1594531284834,"stop":1594531284836,"duration":2}},{"uid":"e8f381b8937b0175","status":"passed","time":{"start":1594163430350,"stop":1594163430351,"duration":1}},{"uid":"d74f4366350b46cb","status":"passed","time":{"start":1594163036572,"stop":1594163036573,"duration":1}}]},"9d5e1a3be58329ea62aa7c12b21cee12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2eea57cae258dfc3","status":"passed","time":{"start":1596047924165,"stop":1596047924166,"duration":1}},{"uid":"a22edada6f3540b8","status":"passed","time":{"start":1596005124262,"stop":1596005124263,"duration":1}},{"uid":"3d09526912983c0c","status":"passed","time":{"start":1594531289099,"stop":1594531289099,"duration":0}},{"uid":"ff576073c8c1b0c","status":"passed","time":{"start":1594163434602,"stop":1594163434602,"duration":0}},{"uid":"79a6750ec2527a19","status":"passed","time":{"start":1594163040988,"stop":1594163040988,"duration":0}}]},"fe3bf435377136cbcb53e4db00bd4e51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c83ee67899e78ee5","status":"passed","time":{"start":1596047924598,"stop":1596047924599,"duration":1}},{"uid":"6453b46852544d78","status":"passed","time":{"start":1596005124709,"stop":1596005124712,"duration":3}},{"uid":"214a4efcb9d15180","status":"passed","time":{"start":1594531289598,"stop":1594531289599,"duration":1}},{"uid":"1860c39c50316b71","status":"passed","time":{"start":1594163435020,"stop":1594163435021,"duration":1}},{"uid":"58313bdd742f2a27","status":"passed","time":{"start":1594163041426,"stop":1594163041427,"duration":1}}]},"baeb278025592b3aed00b5f1bc1265b1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"fb5416f4a0c4a78ad3808ab359d4e649":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d6132c04157f4b2a","status":"passed","time":{"start":1596047924036,"stop":1596047924037,"duration":1}},{"uid":"9332954a139757ab","status":"passed","time":{"start":1596005124129,"stop":1596005124130,"duration":1}},{"uid":"6872cd0b6a805b50","status":"passed","time":{"start":1594531288975,"stop":1594531288976,"duration":1}},{"uid":"ef79cb2d20d63f20","status":"passed","time":{"start":1594163434471,"stop":1594163434472,"duration":1}},{"uid":"e7f62911eeac29ea","status":"passed","time":{"start":1594163040849,"stop":1594163040849,"duration":0}}]},"e3ba8e7dce83ab9de36ddd0bc268f4f6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"d4a8464dd6f2b83ea40747eae5a42d88":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fa3e743f55019b26","status":"passed","time":{"start":1596047923633,"stop":1596047923635,"duration":2}},{"uid":"724aebb7bb591edc","status":"passed","time":{"start":1596005123662,"stop":1596005123662,"duration":0}},{"uid":"b189ef050374abe4","status":"passed","time":{"start":1594531288577,"stop":1594531288578,"duration":1}},{"uid":"1e5b9de99f42c348","status":"passed","time":{"start":1594163434022,"stop":1594163434024,"duration":2}},{"uid":"6bbc7bdaf84f47b6","status":"passed","time":{"start":1594163040504,"stop":1594163040506,"duration":2}}]},"ac7e79f0af8659ddbaffd6954aed70a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1ef3e1da7f90eb82","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}}]},"124f2add699f3e2269c311afae219c6e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"00f2b41781fa6c1345db0eef2722bb55":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5c2415425478b91","status":"passed","time":{"start":1596047924330,"stop":1596047924333,"duration":3}},{"uid":"31818e51390a433c","status":"passed","time":{"start":1596005124436,"stop":1596005124437,"duration":1}},{"uid":"3ddaef01fdc5c620","status":"passed","time":{"start":1594531289274,"stop":1594531289275,"duration":1}},{"uid":"4407a5be4c071461","status":"passed","time":{"start":1594163434758,"stop":1594163434758,"duration":0}},{"uid":"f1ab192b8a6411ab","status":"passed","time":{"start":1594163041146,"stop":1594163041147,"duration":1}}]},"7dba0545991d74ec4981bfb3eea48559":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"14e29fc6b385d9d8","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"3a32e7325b0c9478ff49b72ce837742c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"930cb72c6f547a67","status":"passed","time":{"start":1596047920523,"stop":1596047920526,"duration":3}},{"uid":"716980b213533f3d","status":"passed","time":{"start":1596005120419,"stop":1596005120420,"duration":1}},{"uid":"e648af0ce34ed5de","status":"passed","time":{"start":1594531285369,"stop":1594531285370,"duration":1}},{"uid":"73de36b94710dfb8","status":"passed","time":{"start":1594163430816,"stop":1594163430817,"duration":1}},{"uid":"b39c075966292b12","status":"passed","time":{"start":1594163037067,"stop":1594163037068,"duration":1}}]},"6431e0366c9c302e03ac01343fb7ea77":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"280ba3561eb9309051fd2778469a0bed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"824a9a67d43de1dd","status":"passed","time":{"start":1596047920647,"stop":1596047920648,"duration":1}},{"uid":"b775955afbbce28f","status":"passed","time":{"start":1596005120534,"stop":1596005120535,"duration":1}},{"uid":"127f278b41a7dca8","status":"passed","time":{"start":1594531285467,"stop":1594531285468,"duration":1}},{"uid":"4188da9f65261fe5","status":"passed","time":{"start":1594163430944,"stop":1594163430945,"duration":1}},{"uid":"10429517faa23f8","status":"passed","time":{"start":1594163037186,"stop":1594163037186,"duration":0}}]},"a8c1dee0bdda59abffbbae24dc4b176d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7ee83bbfb7cc9c53","status":"passed","time":{"start":1596047920319,"stop":1596047920320,"duration":1}},{"uid":"fe0f9b3f5e50ccb8","status":"passed","time":{"start":1596005120210,"stop":1596005120213,"duration":3}},{"uid":"2ba3a6269c4b7c53","status":"passed","time":{"start":1594531285182,"stop":1594531285183,"duration":1}},{"uid":"59f960e239ec2fa9","status":"passed","time":{"start":1594163430660,"stop":1594163430661,"duration":1}},{"uid":"364b734ed76afce9","status":"passed","time":{"start":1594163036883,"stop":1594163036884,"duration":1}}]},"3546afa49f7d1872d60856dcd3614357":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"d7b951f3d87d7ec30599f08ae5567eb7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"b78c37ec3b0f496f","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"6988bafab53d2d16b0f0a8a4a8fb9863":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":12,"unknown":0,"total":12},"items":[{"uid":"e1c6185b64159c18","status":"passed","time":{"start":1596047923294,"stop":1596047923296,"duration":2}},{"uid":"a9a31daff9b730d4","status":"passed","time":{"start":1596005123306,"stop":1596005123307,"duration":1}},{"uid":"2698a1a809c0b24c","status":"passed","time":{"start":1594531288225,"stop":1594531288226,"duration":1}},{"uid":"18a09107a9bbb648","status":"passed","time":{"start":1594163433751,"stop":1594163433752,"duration":1}},{"uid":"c8f50edc30ce4b35","status":"passed","time":{"start":1594163040227,"stop":1594163040228,"duration":1}}]},"5e365f66b39a2fede4fe18a5cc569699":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f52a489cb0add672","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"9ee76de6cf1207ebcbd153d4e9a5e5a0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6a4b5866cd20e8a2","status":"passed","time":{"start":1596047923614,"stop":1596047923616,"duration":2}},{"uid":"8bfe2a5d486dbd32","status":"passed","time":{"start":1596005123645,"stop":1596005123645,"duration":0}},{"uid":"64e5afc5a7c73bf5","status":"passed","time":{"start":1594531288565,"stop":1594531288566,"duration":1}},{"uid":"44de51fad33773e2","status":"passed","time":{"start":1594163434008,"stop":1594163434009,"duration":1}},{"uid":"2cbb12a605f4b028","status":"passed","time":{"start":1594163040495,"stop":1594163040496,"duration":1}}]},"079ace8555debd1c87111e8c5a6664bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"1d2c6842ef40288f","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}}]},"2669fd06acd58d7f78fab9b09cfb387a":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"a6e6436071520980","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919201,"stop":1596047919201,"duration":0}},{"uid":"2ebf3e3f671bbc1f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119239,"stop":1596005119239,"duration":0}},{"uid":"239b75ebf85f19ea","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284144,"stop":1594531284144,"duration":0}},{"uid":"464c56c85b2fe399","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429713,"stop":1594163429713,"duration":0}},{"uid":"58f56b3c59d560ca","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035897,"stop":1594163035897,"duration":0}}]},"c191b2a68976eb18aef4345f496d79e7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"928532982127bba0","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}}]},"98a40966717cba446766c1d244440410":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ae3e4db1c423b2d","status":"passed","time":{"start":1596047924295,"stop":1596047924296,"duration":1}},{"uid":"23b7ab66cb15d148","status":"passed","time":{"start":1596005124397,"stop":1596005124399,"duration":2}},{"uid":"623e837ec7d2bd60","status":"passed","time":{"start":1594531289235,"stop":1594531289236,"duration":1}},{"uid":"d38fbab0f0c5894c","status":"passed","time":{"start":1594163434723,"stop":1594163434724,"duration":1}},{"uid":"baaf6a05572983a","status":"passed","time":{"start":1594163041113,"stop":1594163041114,"duration":1}}]},"0704c8beeeff66cfb456c26853e2b7c4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a921030da8c9a520","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}}]},"69736adb645541830719370905336c42":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7262a5b4d0ba4a3e","status":"passed","time":{"start":1596047923313,"stop":1596047923317,"duration":4}},{"uid":"e0c1a391ff3fe7a","status":"passed","time":{"start":1596005123317,"stop":1596005123317,"duration":0}},{"uid":"7069bd627c12c718","status":"passed","time":{"start":1594531288236,"stop":1594531288238,"duration":2}},{"uid":"82e82ea7e37f1711","status":"passed","time":{"start":1594163433761,"stop":1594163433763,"duration":2}},{"uid":"2ad13488b1fdc2c3","status":"passed","time":{"start":1594163040238,"stop":1594163040239,"duration":1}}]},"ced53b89becdc7959575153b365c4b1c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ad06d9389201ca83","status":"passed","time":{"start":1596047923585,"stop":1596047923587,"duration":2}},{"uid":"86c7a820a8ed23ae","status":"passed","time":{"start":1596005123620,"stop":1596005123623,"duration":3}},{"uid":"434217de6e30487c","status":"passed","time":{"start":1594531288532,"stop":1594531288534,"duration":2}},{"uid":"7e9ef2cf5cdf0299","status":"passed","time":{"start":1594163433982,"stop":1594163433984,"duration":2}},{"uid":"c91f8fbb177af405","status":"passed","time":{"start":1594163040465,"stop":1594163040467,"duration":2}}]},"43747c0f5661889622b1e0d54e75b407":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"e1fafa015119497c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919583,"stop":1596047919583,"duration":0}},{"uid":"b16909fb3fbd2c73","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119573,"stop":1596005119573,"duration":0}},{"uid":"bbf0f3d68ee97599","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284470,"stop":1594531284470,"duration":0}},{"uid":"7df29ff1f7409057","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430024,"stop":1594163430025,"duration":1}},{"uid":"b69c36e16ce7f33d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036243,"stop":1594163036243,"duration":0}}]},"d34cb280748c185f029a17e9d0ab6437":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"f85904fe28e7bada8e4dc0f97f50008c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3336ba2bde90bdb5","status":"passed","time":{"start":1596047924731,"stop":1596047924732,"duration":1}},{"uid":"a99dfef2ccd91b8e","status":"passed","time":{"start":1596005124899,"stop":1596005124901,"duration":2}},{"uid":"295c84b73c362a1c","status":"passed","time":{"start":1594531289763,"stop":1594531289764,"duration":1}},{"uid":"a17ba15dec7cbf3d","status":"passed","time":{"start":1594163435154,"stop":1594163435155,"duration":1}},{"uid":"a2055883afb4a2fd","status":"passed","time":{"start":1594163041575,"stop":1594163041576,"duration":1}}]},"939a8064e3d28ec85fadd67010b560ae":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"31852768c071e158fda7de0b172143f4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"acc95e26a53d92ff","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}}]},"7c789f6ee990c99f027ff5b8c32573fd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"39c4344b5cd24c424efd894c14cc4e91":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6ee41e4ff7ffb39e","status":"passed","time":{"start":1596047924306,"stop":1596047924307,"duration":1}},{"uid":"1783ee7e028711d6","status":"passed","time":{"start":1596005124404,"stop":1596005124405,"duration":1}},{"uid":"ef2acd7afc68c4bd","status":"passed","time":{"start":1594531289244,"stop":1594531289245,"duration":1}},{"uid":"371f968a29c2bcdf","status":"passed","time":{"start":1594163434730,"stop":1594163434730,"duration":0}},{"uid":"f76a96c89083f300","status":"passed","time":{"start":1594163041121,"stop":1594163041122,"duration":1}}]},"30b0607f1fcd48dea967a2df41a1ef54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"250189cf32435be5","status":"passed","time":{"start":1596047923911,"stop":1596047923912,"duration":1}},{"uid":"77fa96eeec6e4d15","status":"passed","time":{"start":1596005123948,"stop":1596005123949,"duration":1}},{"uid":"f7ccce118a86144d","status":"passed","time":{"start":1594531288840,"stop":1594531288841,"duration":1}},{"uid":"8ba130a1169e2da9","status":"passed","time":{"start":1594163434319,"stop":1594163434320,"duration":1}},{"uid":"139199f0716be385","status":"passed","time":{"start":1594163040726,"stop":1594163040726,"duration":0}}]},"2889ca714f21625b11b311b780ead719":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"2ebd55ae07bf70badb4352cad15caf78":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e2d502f5a6d529d6","status":"passed","time":{"start":1596047923863,"stop":1596047923864,"duration":1}},{"uid":"922f63631d08a3fd","status":"passed","time":{"start":1596005123897,"stop":1596005123897,"duration":0}},{"uid":"7a4da021a2c4d986","status":"passed","time":{"start":1594531288801,"stop":1594531288802,"duration":1}},{"uid":"d336c661e305482f","status":"passed","time":{"start":1594163434268,"stop":1594163434269,"duration":1}},{"uid":"f36eae475bbfb994","status":"passed","time":{"start":1594163040687,"stop":1594163040687,"duration":0}}]}} \ No newline at end of file +{"2a488c8a592f99c42193093dceadfd0d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6d4216edcb2d933a","status":"passed","time":{"start":1596047923984,"stop":1596047923985,"duration":1}},{"uid":"76daaf401c64bb29","status":"passed","time":{"start":1596005124068,"stop":1596005124068,"duration":0}},{"uid":"d6e803d51266cd9a","status":"passed","time":{"start":1594531288919,"stop":1594531288919,"duration":0}},{"uid":"6b6844f123edcc4c","status":"passed","time":{"start":1594163434410,"stop":1594163434411,"duration":1}},{"uid":"f07476a9ca5f2aae","status":"passed","time":{"start":1594163040798,"stop":1594163040798,"duration":0}}]},"f51ecfb2c4460f518b2155a78436a09d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7940a8ba615e27f7","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0}},{"uid":"8672ab2817945b36","status":"passed","time":{"start":1732764220862,"stop":1732764220862,"duration":0}},{"uid":"984af3d5d8056be9","status":"passed","time":{"start":1732428196116,"stop":1732428196116,"duration":0}},{"uid":"52715db4a1ce5955","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"8ded43d0fdf317ac","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"9649de1e84bdf76637c00a153a4eb0b9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":24,"unknown":0,"total":24},"items":[{"uid":"dfa0ea4b9f1fa54a","status":"passed","time":{"start":1596047920385,"stop":1596047920388,"duration":3}},{"uid":"2967593e7c52bf8c","status":"passed","time":{"start":1596005120289,"stop":1596005120292,"duration":3}},{"uid":"9343dbf3101090cf","status":"passed","time":{"start":1594531285248,"stop":1594531285249,"duration":1}},{"uid":"52450f3d385118b1","status":"passed","time":{"start":1594163430717,"stop":1594163430718,"duration":1}},{"uid":"b6ed8732c80611f1","status":"passed","time":{"start":1594163036944,"stop":1594163036947,"duration":3}}]},"cff1b92fe15b026161a65b578563f84b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":7,"unknown":0,"total":7},"items":[{"uid":"ec00714c45249a61","status":"passed","time":{"start":1596047920455,"stop":1596047920457,"duration":2}},{"uid":"159bf68d3f421b2c","status":"passed","time":{"start":1596005120355,"stop":1596005120356,"duration":1}},{"uid":"76a637f138de5bec","status":"passed","time":{"start":1594531285294,"stop":1594531285295,"duration":1}},{"uid":"8c8b3bd4256b830","status":"passed","time":{"start":1594163430761,"stop":1594163430762,"duration":1}},{"uid":"a895b530ff0a0810","status":"passed","time":{"start":1594163036999,"stop":1594163037002,"duration":3}}]},"da4a41f0bf9943ee34282e89227dd9a2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"87b2e8453406c3f","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0}},{"uid":"dd86378e3a37dfe4","status":"passed","time":{"start":1732764220303,"stop":1732764220303,"duration":0}},{"uid":"a224a931a5567f85","status":"passed","time":{"start":1732428195625,"stop":1732428195626,"duration":1}}]},"91791ed1a852f76f936407ccb3d2dbaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"52f852c4238fea22","status":"passed","time":{"start":1733030100757,"stop":1733030100757,"duration":0}},{"uid":"a6592dc6717fe514","status":"passed","time":{"start":1732764220779,"stop":1732764220779,"duration":0}},{"uid":"ffa13a74003ae703","status":"passed","time":{"start":1732428196052,"stop":1732428196052,"duration":0}},{"uid":"5a22d7a269c3ca06","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"9275e1d85a023003","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"7414d0b98bcb019741716816e3be1de6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":31,"unknown":0,"total":31},"items":[{"uid":"93884a95bea2ee41","status":"passed","time":{"start":1596047923664,"stop":1596047923665,"duration":1}},{"uid":"fd7e550560ccaf94","status":"passed","time":{"start":1596005123695,"stop":1596005123697,"duration":2}},{"uid":"60648aed2e16811e","status":"passed","time":{"start":1594531288608,"stop":1594531288610,"duration":2}},{"uid":"36f076fc275bb814","status":"passed","time":{"start":1594163434050,"stop":1594163434051,"duration":1}},{"uid":"ecec029d0af460c","status":"passed","time":{"start":1594163040529,"stop":1594163040530,"duration":1}}]},"c3347b0ee9b14d599cb7e273cdb897bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"d55210ca98ef22ea","status":"passed","time":{"start":1596047919473,"stop":1596047919474,"duration":1}},{"uid":"c656650d77df17ff","status":"passed","time":{"start":1596005119488,"stop":1596005119488,"duration":0}},{"uid":"63a2bacffa60a113","status":"passed","time":{"start":1594531284399,"stop":1594531284400,"duration":1}},{"uid":"4fdfdcd11ab360ff","status":"passed","time":{"start":1594163429953,"stop":1594163429954,"duration":1}},{"uid":"1fe21e60ae97ff1","status":"passed","time":{"start":1594163036147,"stop":1594163036148,"duration":1}}]},"49af4a8ebdc007fac4acbc085138b80e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7250652c2d8bbae5","status":"passed","time":{"start":1733030100992,"stop":1733030100992,"duration":0}},{"uid":"591cfdbc90cf4c5e","status":"passed","time":{"start":1732764221117,"stop":1732764221117,"duration":0}},{"uid":"a77a517a493b3eb2","status":"passed","time":{"start":1732428196300,"stop":1732428196300,"duration":0}},{"uid":"52187b3daff300ae","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"de314943cf5bdd10","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"db1d961947ba50c55f7273e4eb265602":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c32482be894dbe32","status":"passed","time":{"start":1596047919549,"stop":1596047919552,"duration":3}},{"uid":"d8a319c1c82e58cb","status":"passed","time":{"start":1596005119551,"stop":1596005119553,"duration":2}},{"uid":"5beca2f35d69dd5b","status":"passed","time":{"start":1594531284452,"stop":1594531284453,"duration":1}},{"uid":"ade3b84e9d3a3726","status":"passed","time":{"start":1594163430004,"stop":1594163430006,"duration":2}},{"uid":"ef141e8efa89b28f","status":"passed","time":{"start":1594163036218,"stop":1594163036219,"duration":1}}]},"bb3964d396ef802dceada9777cff8e45":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d20d06b45fb65ddb","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0}},{"uid":"9a9def5039f12f67","status":"passed","time":{"start":1732764220392,"stop":1732764220392,"duration":0}},{"uid":"74b0969e7db4effb","status":"passed","time":{"start":1732428195699,"stop":1732428195699,"duration":0}},{"uid":"dee0416f79d22a0d","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"1c8034b1a6365fc2","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"0c5a9947fdd01d236c17811f6cecd204":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"768a7efdf473c3d3","status":"passed","time":{"start":1596047924715,"stop":1596047924716,"duration":1}},{"uid":"1915789dfbb56fed","status":"passed","time":{"start":1596005124875,"stop":1596005124876,"duration":1}},{"uid":"7edd927b315b8654","status":"passed","time":{"start":1594531289740,"stop":1594531289741,"duration":1}},{"uid":"d0acdbaff0a75e84","status":"passed","time":{"start":1594163435137,"stop":1594163435138,"duration":1}},{"uid":"1d0518f8800e0ba9","status":"passed","time":{"start":1594163041557,"stop":1594163041558,"duration":1}}]},"e5c7abe0fcf3b79049d906f50808feb6":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"482cc1b462231f44","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098630,"stop":1733030098630,"duration":0}},{"uid":"577d9e765fb39849","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218558,"stop":1732764218558,"duration":0}},{"uid":"996ab105867adbc9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193914,"stop":1732428193914,"duration":0}},{"uid":"88c7e92ae3f035ea","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"620b2589fb870406","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"ed63cab09a5a21abc4139e6751f28e54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4d64a30c387b7743","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0}},{"uid":"56d019840f444cec","status":"passed","time":{"start":1732764220536,"stop":1732764220536,"duration":0}},{"uid":"56ad7c473898c46d","status":"passed","time":{"start":1732428195846,"stop":1732428195846,"duration":0}},{"uid":"e738d6d09d0feb9e","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"c63189b867db5809","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"d3e9281f847cd49d15fb55b4db822c97":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"78aec59881bd461e","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0}}]},"78d13a2d0abbaf1a1f243a198f76fff5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":18,"unknown":0,"total":18},"items":[{"uid":"81aec115e9f44479","status":"passed","time":{"start":1596047920341,"stop":1596047920343,"duration":2}},{"uid":"2a076499c238a323","status":"passed","time":{"start":1596005120241,"stop":1596005120243,"duration":2}},{"uid":"9440087e3643fa9","status":"passed","time":{"start":1594531285205,"stop":1594531285207,"duration":2}},{"uid":"60dbc7d8b53ef5b6","status":"passed","time":{"start":1594163430682,"stop":1594163430684,"duration":2}},{"uid":"f7c227de7bf7d5f8","status":"passed","time":{"start":1594163036906,"stop":1594163036907,"duration":1}}]},"b54c9296974c5f11c9729ae250dcc661":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1f538cc051c14271","status":"passed","time":{"start":1596047924273,"stop":1596047924274,"duration":1}},{"uid":"8b162058e3797231","status":"passed","time":{"start":1596005124376,"stop":1596005124376,"duration":0}},{"uid":"9f45ffa650a9c208","status":"passed","time":{"start":1594531289208,"stop":1594531289209,"duration":1}},{"uid":"7587b1a31f39a9e6","status":"passed","time":{"start":1594163434704,"stop":1594163434704,"duration":0}},{"uid":"87702ceafb3be1d2","status":"passed","time":{"start":1594163041094,"stop":1594163041095,"duration":1}}]},"2fc0cf409058113d339743775fa3158e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a088624abb606e0e","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0}},{"uid":"ab3687d99fed99d0","status":"passed","time":{"start":1732764220579,"stop":1732764220579,"duration":0}},{"uid":"5af3f258cf327b2a","status":"passed","time":{"start":1732428195882,"stop":1732428195882,"duration":0}},{"uid":"dead64fe3d4f484d","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"91ff78dc5a767b91","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"b71e871d53b429aef63593ea1f41c8bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e0dd8dfaed76aa75","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0}},{"uid":"c87eac92a1b3b456","status":"passed","time":{"start":1732764220523,"stop":1732764220523,"duration":0}},{"uid":"3b89778e0f9a0b66","status":"passed","time":{"start":1732428195832,"stop":1732428195833,"duration":1}},{"uid":"eb3e9f6b3780b454","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"f0d79dba84dbdf82","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"3b2ebb1924dbc4e6a73dc5dda19dd323":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"230fd42f20a11e18","status":"passed","time":{"start":1733030100617,"stop":1733030100633,"duration":16}},{"uid":"8ed1a17310170d88","status":"passed","time":{"start":1732764220660,"stop":1732764220660,"duration":0}},{"uid":"8b3214317e10e87f","status":"passed","time":{"start":1732428195953,"stop":1732428195953,"duration":0}},{"uid":"d7c1fb6f236110ca","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"a80b9adf611eb67d","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"e59fe81d3d5b6631d5afa04dfa467ab0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"31d387276325aa8","status":"passed","time":{"start":1596047920565,"stop":1596047920567,"duration":2}},{"uid":"ded59b0be412649b","status":"passed","time":{"start":1596005120464,"stop":1596005120466,"duration":2}},{"uid":"64b65df6d3ccc09c","status":"passed","time":{"start":1594531285407,"stop":1594531285408,"duration":1}},{"uid":"bc547d548a8e43fb","status":"passed","time":{"start":1594163430867,"stop":1594163430868,"duration":1}},{"uid":"d7a8e6dfca27b15d","status":"passed","time":{"start":1594163037111,"stop":1594163037112,"duration":1}}]},"10a57706311105e48a11addadcd6ba5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ffe7f31d081d3160","status":"passed","time":{"start":1596047923277,"stop":1596047923278,"duration":1}},{"uid":"4f916a7880edd6e3","status":"passed","time":{"start":1596005123276,"stop":1596005123277,"duration":1}},{"uid":"9af0e99812e0efbc","status":"passed","time":{"start":1594531288206,"stop":1594531288207,"duration":1}},{"uid":"8e4295c80784509e","status":"passed","time":{"start":1594163433734,"stop":1594163433735,"duration":1}},{"uid":"e97fd44623e301e1","status":"passed","time":{"start":1594163040204,"stop":1594163040205,"duration":1}}]},"fdc9a1360d77d4313e2885c36e2d5f96":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3e286d88c47292eb","status":"passed","time":{"start":1596047923442,"stop":1596047923444,"duration":2}},{"uid":"a8fa86dbcff7a636","status":"passed","time":{"start":1596005123439,"stop":1596005123442,"duration":3}},{"uid":"bd172034ceeb6494","status":"passed","time":{"start":1594531288354,"stop":1594531288356,"duration":2}},{"uid":"27585b338e4744d3","status":"passed","time":{"start":1594163433849,"stop":1594163433850,"duration":1}},{"uid":"e8335448c8a98cb2","status":"passed","time":{"start":1594163040334,"stop":1594163040336,"duration":2}}]},"b253b4766bea2d3475c5b21dfa1fbf46":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":28,"unknown":0,"total":28},"items":[{"uid":"9162dc5b0dddeb2c","status":"passed","time":{"start":1596047919624,"stop":1596047919625,"duration":1}},{"uid":"54a57611d54057c1","status":"passed","time":{"start":1596005119605,"stop":1596005119606,"duration":1}},{"uid":"1e8d6a0f9e116fa1","status":"passed","time":{"start":1594531284504,"stop":1594531284505,"duration":1}},{"uid":"c08e012abdb786d8","status":"passed","time":{"start":1594163430051,"stop":1594163430052,"duration":1}},{"uid":"54960190d043c07f","status":"passed","time":{"start":1594163036270,"stop":1594163036271,"duration":1}}]},"164912053c696e73c7be4b3a14287ecc":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"43578fd4f74ce5d9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098896,"stop":1733030098896,"duration":0}},{"uid":"93b00a3d2e7b92c1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218824,"stop":1732764218824,"duration":0}},{"uid":"e5b1f301926fe23","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194170,"stop":1732428194170,"duration":0}},{"uid":"1dee8c06fd165199","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"e5ac2209dd79eabb","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"0906853824abbb5b2f8dc3ebbef91492":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"eb35bcc5ca774b83","status":"passed","time":{"start":1596047924568,"stop":1596047924570,"duration":2}},{"uid":"76439dea2a9d65ae","status":"passed","time":{"start":1596005124678,"stop":1596005124679,"duration":1}},{"uid":"2941d7d2d263712e","status":"passed","time":{"start":1594531289560,"stop":1594531289561,"duration":1}},{"uid":"4ca4e502466ccc51","status":"passed","time":{"start":1594163434990,"stop":1594163434991,"duration":1}},{"uid":"56dfabc63673070e","status":"passed","time":{"start":1594163041387,"stop":1594163041388,"duration":1}}]},"4a2df53975623c10d30ec1c6932ba04a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"bb8e119491d2ebc3","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0}},{"uid":"9b0ec4eb2cd2dde7","status":"passed","time":{"start":1732764221371,"stop":1732764221371,"duration":0}},{"uid":"dd76819b5fd836d3","status":"passed","time":{"start":1732428196496,"stop":1732428196496,"duration":0}},{"uid":"69f65011f131e2b6","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"5e4b0e05a0862f7e","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"ed6c1e5f0eb38874fc66b7fa53f68e12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"23b533c70baf95c9","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0}},{"uid":"f6c63ae7fdc54916","status":"passed","time":{"start":1732764220855,"stop":1732764220855,"duration":0}},{"uid":"9800852f4c3c1957","status":"passed","time":{"start":1732428196110,"stop":1732428196110,"duration":0}},{"uid":"da49bdf1737798b8","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}},{"uid":"b867e5092f796e5b","status":"passed","time":{"start":1724735129399,"stop":1724735129399,"duration":0}}]},"296c843106f019f44f0537c523c42ad4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4f6f89be9d7eaeb5","status":"passed","time":{"start":1596047919501,"stop":1596047919506,"duration":5}},{"uid":"66557685192c1e8","status":"passed","time":{"start":1596005119513,"stop":1596005119515,"duration":2}},{"uid":"9dc6fbc86d74868e","status":"passed","time":{"start":1594531284100,"stop":1594531284102,"duration":2}},{"uid":"c0f9f375232f8198","status":"passed","time":{"start":1594163429670,"stop":1594163429671,"duration":1}},{"uid":"6a636465a9f40657","status":"passed","time":{"start":1594163035837,"stop":1594163035838,"duration":1}}]},"687e7d979daec216412b2e6518d7f22d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7a17f147f5f76599","status":"passed","time":{"start":1596047924461,"stop":1596047924462,"duration":1}},{"uid":"c7a632f72bf7c2b9","status":"passed","time":{"start":1596005124564,"stop":1596005124565,"duration":1}},{"uid":"a9c637eaa5b324ca","status":"passed","time":{"start":1594531289423,"stop":1594531289424,"duration":1}},{"uid":"1c51d02602d12c50","status":"passed","time":{"start":1594163434880,"stop":1594163434881,"duration":1}},{"uid":"a8e3b7db64e2634","status":"passed","time":{"start":1594163041271,"stop":1594163041272,"duration":1}}]},"429c2bf738c7d46e53c9a2e5226d6649":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2fa689144ccb2725","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0}},{"uid":"c52dc9ba56a64495","status":"passed","time":{"start":1732764220762,"stop":1732764220763,"duration":1}},{"uid":"ea40d4fff96687ff","status":"passed","time":{"start":1732428196037,"stop":1732428196037,"duration":0}},{"uid":"92083f552ecb72c4","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"3ea60f3a146e3d51","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"1867e530fd2d8f6e72a7be68dfaf6d29":{"statistic":{"failed":0,"broken":0,"skipped":11,"passed":0,"unknown":0,"total":11},"items":[{"uid":"1e8ff0649323ef1e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919229,"stop":1596047919229,"duration":0}},{"uid":"30f80a7f1496e991","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119257,"stop":1596005119257,"duration":0}},{"uid":"7ccf9ca367f43634","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284164,"stop":1594531284164,"duration":0}},{"uid":"d8ed5b14959d0b40","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429732,"stop":1594163429732,"duration":0}},{"uid":"d51ed0de8a59c6a2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035916,"stop":1594163035916,"duration":0}}]},"29249ea89f0081dda70899f3290f857b":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"c62025a79b33eb3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098927,"stop":1733030098927,"duration":0}},{"uid":"80f314b70b306bd4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218847,"stop":1732764218847,"duration":0}},{"uid":"b5a113fbe50e74ce","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194194,"stop":1732428194194,"duration":0}},{"uid":"39245131d70863d6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"c322e80c6cd8da83","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"83f89c47687232e4e6df9cb000215f62":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a7d507d283840d7b","status":"passed","time":{"start":1596047924259,"stop":1596047924260,"duration":1}},{"uid":"78075941f67b4dd7","status":"passed","time":{"start":1596005124363,"stop":1596005124364,"duration":1}},{"uid":"518c3d7b9812dec6","status":"passed","time":{"start":1594531289188,"stop":1594531289189,"duration":1}},{"uid":"ad112bf95b7a9a0c","status":"passed","time":{"start":1594163434690,"stop":1594163434691,"duration":1}},{"uid":"52d2c99e6dc830cf","status":"passed","time":{"start":1594163041080,"stop":1594163041080,"duration":0}}]},"4e553d5e3ff5fc5c21a746a843af96e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9b651a3e27842d38","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0}},{"uid":"b78b9d24e53cd100","status":"passed","time":{"start":1732764220737,"stop":1732764220737,"duration":0}},{"uid":"b673d7ca3af16ae5","status":"passed","time":{"start":1732428196017,"stop":1732428196017,"duration":0}},{"uid":"9393151991be7f33","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"46f01e6c3f72b063","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"f8c8e1115bda1d1060b9b125be217311":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"675c2d9214d0c9ee","status":"passed","time":{"start":1596047923327,"stop":1596047923328,"duration":1}},{"uid":"c51894693dbb963f","status":"passed","time":{"start":1596005123333,"stop":1596005123334,"duration":1}},{"uid":"fa68cff2aa65baac","status":"passed","time":{"start":1594531288250,"stop":1594531288251,"duration":1}},{"uid":"b5fffa240ef9f697","status":"passed","time":{"start":1594163433772,"stop":1594163433773,"duration":1}},{"uid":"7a31ceac1c1f83f4","status":"passed","time":{"start":1594163040249,"stop":1594163040250,"duration":1}}]},"f47162ca0e9bacec154c9094fd33e635":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"da807d1d651bf07b","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0}},{"uid":"b0cc123728fa2f2d","status":"passed","time":{"start":1732764219279,"stop":1732764219279,"duration":0}},{"uid":"196d34645221ebb4","status":"passed","time":{"start":1732428194595,"stop":1732428194595,"duration":0}},{"uid":"d5ae1235bc27ccba","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}},{"uid":"e1e70dabc7dad91e","status":"passed","time":{"start":1724735127984,"stop":1724735128000,"duration":16}}]},"5d0f5e220c2579103119e57300b46215":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9ba260a0149e6341","status":"passed","time":{"start":1733030099224,"stop":1733030099224,"duration":0}},{"uid":"dc076040e5481dc9","status":"passed","time":{"start":1732764219174,"stop":1732764219176,"duration":2}},{"uid":"cfaf892be75c5d35","status":"passed","time":{"start":1732428194503,"stop":1732428194503,"duration":0}},{"uid":"148a22b7e430194f","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"a42793a5da57f5c7","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"fc16fe6f8e2f2f0dd1e7d650d0ec62aa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"40c3fd65f9a485e9","status":"passed","time":{"start":1596047920549,"stop":1596047920552,"duration":3}},{"uid":"621761b8fc0dd8ca","status":"passed","time":{"start":1596005120447,"stop":1596005120451,"duration":4}},{"uid":"fe4f3a24444bbe1d","status":"passed","time":{"start":1594531285394,"stop":1594531285396,"duration":2}},{"uid":"c6d5e06d775f57aa","status":"passed","time":{"start":1594163430850,"stop":1594163430853,"duration":3}},{"uid":"2573c8d3112ec4","status":"passed","time":{"start":1594163037099,"stop":1594163037101,"duration":2}}]},"5821e6355bce2a3bf46d4ce3e55de034":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5af3592e93b232bc","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0}},{"uid":"f48dcf9628fe90ff","status":"passed","time":{"start":1732764220612,"stop":1732764220612,"duration":0}},{"uid":"9521eb418a2faa99","status":"passed","time":{"start":1732428195914,"stop":1732428195914,"duration":0}},{"uid":"2b9309fd398214a5","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"f09191f837671677","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"f23e1d1b6981955bbbdda32c75b7cdd8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b575f441a3da50d","status":"passed","time":{"start":1596047919219,"stop":1596047919222,"duration":3}},{"uid":"11040cc92103f99","status":"passed","time":{"start":1596005119251,"stop":1596005119252,"duration":1}},{"uid":"bb14985078641cb3","status":"passed","time":{"start":1594531284157,"stop":1594531284158,"duration":1}},{"uid":"d227a6939d94be03","status":"passed","time":{"start":1594163429725,"stop":1594163429726,"duration":1}},{"uid":"8acd8d27784cac00","status":"passed","time":{"start":1594163035908,"stop":1594163035910,"duration":2}}]},"cddeb37c6d892aa5b18e595a7d4e3282":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dbb4b23864e9a8fd","status":"passed","time":{"start":1596047924544,"stop":1596047924546,"duration":2}},{"uid":"eeeb3712026df28f","status":"passed","time":{"start":1596005124651,"stop":1596005124653,"duration":2}},{"uid":"18f1cfdcabf3e717","status":"passed","time":{"start":1594531289531,"stop":1594531289532,"duration":1}},{"uid":"1e68f7b24ea3fb56","status":"passed","time":{"start":1594163434965,"stop":1594163434966,"duration":1}},{"uid":"bbb239c6b09c447f","status":"passed","time":{"start":1594163041363,"stop":1594163041364,"duration":1}}]},"059761e477dad0853fa6e0ed172a78f0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5b5df6c66b23ba75","status":"passed","time":{"start":1733030099239,"stop":1733030099255,"duration":16}},{"uid":"48e03b38164b77c2","status":"passed","time":{"start":1732764219206,"stop":1732764219208,"duration":2}},{"uid":"6e3ab906ce5621b5","status":"passed","time":{"start":1732428194528,"stop":1732428194528,"duration":0}},{"uid":"6cad203fab564c60","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"63cbfe00daba1c69","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"a5e357785cf7a1184adb35707a6c5d0c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6c8559b634a76bd8","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0}},{"uid":"9d2b852ea94aa88a","status":"passed","time":{"start":1732764218691,"stop":1732764218691,"duration":0}},{"uid":"91c9b008755c7351","status":"passed","time":{"start":1732428194039,"stop":1732428194040,"duration":1}},{"uid":"d6e4ebd44034ff08","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}},{"uid":"af3c309699fc2b8b","status":"passed","time":{"start":1724735127297,"stop":1724735127297,"duration":0}}]},"84d7f0a1c2a345b29fa2e222a5ed7ee5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"44141b5da145c70a","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0}},{"uid":"a78b9243c26a61bf","status":"passed","time":{"start":1732764219326,"stop":1732764219326,"duration":0}},{"uid":"2655a1e6934b1850","status":"passed","time":{"start":1732428194650,"stop":1732428194650,"duration":0}},{"uid":"b5a45493f51c1d67","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}},{"uid":"7f890ca68cdfc481","status":"passed","time":{"start":1724735128031,"stop":1724735128047,"duration":16}}]},"21739eee721a124a84e5414945df03e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ec1f79d5effe1aa9","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"197e80b267cccc2b","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"72a7c9402c254937","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"38639b46d1e381a9","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}},{"uid":"cf2235e5886d8954","status":"passed","time":{"start":1724735127891,"stop":1724735127891,"duration":0}}]},"3291f911facce5382ac0029b17def0c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f669ee5da4bf50b4","status":"passed","time":{"start":1596047923456,"stop":1596047923456,"duration":0}},{"uid":"6d82d06e3fee3c1e","status":"passed","time":{"start":1596005123455,"stop":1596005123455,"duration":0}},{"uid":"9d4991fb42a21fc7","status":"passed","time":{"start":1594531288366,"stop":1594531288367,"duration":1}},{"uid":"e16589a7600c691","status":"passed","time":{"start":1594163433860,"stop":1594163433861,"duration":1}},{"uid":"e564a1bcc85e43df","status":"passed","time":{"start":1594163040347,"stop":1594163040348,"duration":1}}]},"bdd7a9084eedc74da67154030d95cad9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f343a1d7b70b8e3f","status":"passed","time":{"start":1596047919192,"stop":1596047919194,"duration":2}},{"uid":"8fec8172d6a3d6cc","status":"passed","time":{"start":1596005119232,"stop":1596005119234,"duration":2}},{"uid":"3e5e701c4e03ac36","status":"passed","time":{"start":1594531284137,"stop":1594531284139,"duration":2}},{"uid":"248f69e516e74046","status":"passed","time":{"start":1594163429702,"stop":1594163429704,"duration":2}},{"uid":"cfc326efff7de22","status":"passed","time":{"start":1594163035884,"stop":1594163035886,"duration":2}}]},"128bd70e221c2c2b932b5e8d4fdb22c0":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"4df2e31ca734bf47","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098911,"stop":1733030098911,"duration":0}},{"uid":"31802a90aeba5e97","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218842,"stop":1732764218842,"duration":0}},{"uid":"c42292a9c36c46f3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194190,"stop":1732428194190,"duration":0}},{"uid":"a6bf4a932c1ec147","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"6827fd264cb4d263","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"06956afd8355f6465598df890d5ec8f8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c536f7da42be3b4b","status":"passed","time":{"start":1596047924111,"stop":1596047924112,"duration":1}},{"uid":"61d711650f6074a1","status":"passed","time":{"start":1596005124207,"stop":1596005124208,"duration":1}},{"uid":"731d3bdae0232e7c","status":"passed","time":{"start":1594531289046,"stop":1594531289047,"duration":1}},{"uid":"a675b6909b626ac","status":"passed","time":{"start":1594163434551,"stop":1594163434551,"duration":0}},{"uid":"1ad48475f5f0b2ec","status":"passed","time":{"start":1594163040936,"stop":1594163040937,"duration":1}}]},"f5aad0d6d87c18c71b470c7dcc7528e2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"67e6884b53cc3127","status":"passed","time":{"start":1596047924056,"stop":1596047924057,"duration":1}},{"uid":"c9c5bd5e0813b176","status":"passed","time":{"start":1596005124153,"stop":1596005124154,"duration":1}},{"uid":"5504d7c7e3760736","status":"passed","time":{"start":1594531288996,"stop":1594531288997,"duration":1}},{"uid":"eacbf542887c2ff9","status":"passed","time":{"start":1594163434498,"stop":1594163434499,"duration":1}},{"uid":"569a9059b2139b43","status":"passed","time":{"start":1594163040890,"stop":1594163040890,"duration":0}}]},"094915dd36d829c22ed2375a32962ac5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6d917e3e4d702f23","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0}},{"uid":"c2a15dd126224894","status":"passed","time":{"start":1732764221181,"stop":1732764221181,"duration":0}},{"uid":"6ca78efd90ffa643","status":"passed","time":{"start":1732428196345,"stop":1732428196345,"duration":0}},{"uid":"f50d911c93ffbcb0","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"f5da6537a014533","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"79c7b93ec42d8a40bc531e50834720ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5ff9cf70b259ca21","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0}},{"uid":"6bab07231bfb8a25","status":"passed","time":{"start":1732764220402,"stop":1732764220402,"duration":0}},{"uid":"fb237eeb673713e3","status":"passed","time":{"start":1732428195706,"stop":1732428195706,"duration":0}},{"uid":"d7357eaa8c15ec47","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"57946e73be805e2a","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"9cc20e8c3c9bafa6f94ecaef044db1be":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c3880c16fa84744e","status":"passed","time":{"start":1596047920404,"stop":1596047920406,"duration":2}},{"uid":"7e21b847450788d6","status":"passed","time":{"start":1596005120303,"stop":1596005120305,"duration":2}},{"uid":"f0ba75b6d92b2d99","status":"passed","time":{"start":1594531285258,"stop":1594531285259,"duration":1}},{"uid":"9f5807594e677cb2","status":"passed","time":{"start":1594163430727,"stop":1594163430728,"duration":1}},{"uid":"7dce11408515f2e0","status":"passed","time":{"start":1594163036960,"stop":1594163036961,"duration":1}}]},"75857b885e27e2739e90cf1095eb0b4f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3f1719afef6aa25a","status":"passed","time":{"start":1596047924684,"stop":1596047924684,"duration":0}},{"uid":"792ab8ddfe994d14","status":"passed","time":{"start":1596005124826,"stop":1596005124828,"duration":2}},{"uid":"52b3fcf14c1585dd","status":"passed","time":{"start":1594531289701,"stop":1594531289702,"duration":1}},{"uid":"dd1b39afd707b802","status":"passed","time":{"start":1594163435104,"stop":1594163435105,"duration":1}},{"uid":"abd18a32407e5a49","status":"passed","time":{"start":1594163041521,"stop":1594163041522,"duration":1}}]},"804d83b9e2afe34ff3ad716bee4ea2c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ed321d136f7005fa","status":"passed","time":{"start":1596047923785,"stop":1596047923786,"duration":1}},{"uid":"1943889a3a54c45e","status":"passed","time":{"start":1596005123818,"stop":1596005123819,"duration":1}},{"uid":"6281ff92aff92119","status":"passed","time":{"start":1594531288732,"stop":1594531288732,"duration":0}},{"uid":"5562ab223b5c65b7","status":"passed","time":{"start":1594163434189,"stop":1594163434190,"duration":1}},{"uid":"204566d4f118bd6e","status":"passed","time":{"start":1594163040625,"stop":1594163040626,"duration":1}}]},"3225e52f0799b8e8454699743228b708":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":20,"unknown":0,"total":20},"items":[{"uid":"697d09579cde5c98","status":"passed","time":{"start":1596047919141,"stop":1596047919143,"duration":2}},{"uid":"6e7cacb819d6e3b2","status":"passed","time":{"start":1596005119196,"stop":1596005119198,"duration":2}},{"uid":"8784e953754c191a","status":"passed","time":{"start":1594531284087,"stop":1594531284089,"duration":2}},{"uid":"2660cb9775e0d4cc","status":"passed","time":{"start":1594163429658,"stop":1594163429659,"duration":1}},{"uid":"e4a2e4942d112e9b","status":"passed","time":{"start":1594163035821,"stop":1594163035823,"duration":2}}]},"5e3d4a7b89a7ecee6b57c2383b63527b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1cbe6a610fbdfd6","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0}},{"uid":"67a0bf67db9047ee","status":"passed","time":{"start":1732764219259,"stop":1732764219259,"duration":0}},{"uid":"1d2104b5fa1d29b","status":"passed","time":{"start":1732428194577,"stop":1732428194577,"duration":0}},{"uid":"2b38fe6b8a5a46","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"5c281d5272513bfd","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"19f05ac7c7dd75a1836cbb7e42860db3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e50f32fc1e57c2b","status":"passed","time":{"start":1596047924237,"stop":1596047924238,"duration":1}},{"uid":"8d742ea4d41adf53","status":"passed","time":{"start":1596005124343,"stop":1596005124343,"duration":0}},{"uid":"351cefcf4ed42edd","status":"passed","time":{"start":1594531289170,"stop":1594531289172,"duration":2}},{"uid":"d1f8f5ff75563b9","status":"passed","time":{"start":1594163434673,"stop":1594163434674,"duration":1}},{"uid":"a9cae12d827143f4","status":"passed","time":{"start":1594163041063,"stop":1594163041064,"duration":1}}]},"4bb0ff4e646e0a12014675a90c29ab15":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":29,"unknown":0,"total":29},"items":[{"uid":"16ec2c17504910be","status":"passed","time":{"start":1596047919250,"stop":1596047919254,"duration":4}},{"uid":"bdc5c2a878865275","status":"passed","time":{"start":1596005119268,"stop":1596005119270,"duration":2}},{"uid":"6f4900c7393ee626","status":"passed","time":{"start":1594531284174,"stop":1594531284175,"duration":1}},{"uid":"b029295acb6111b","status":"passed","time":{"start":1594163429741,"stop":1594163429743,"duration":2}},{"uid":"f04b0cf8c119277","status":"passed","time":{"start":1594163035928,"stop":1594163035929,"duration":1}}]},"11e49f45979df22d4f121435101e70bc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"afc8e5dacd30bc41","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0}},{"uid":"1f1df83d6cc10b66","status":"passed","time":{"start":1732764221169,"stop":1732764221169,"duration":0}},{"uid":"9c241cc9403723af","status":"passed","time":{"start":1732428196336,"stop":1732428196336,"duration":0}},{"uid":"deed80da6e08bd69","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"1152e12f582a6d83","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"1b30406a017c48cf089c8a0fad27377f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"556ecd5922774ce2","status":"passed","time":{"start":1596047924394,"stop":1596047924395,"duration":1}},{"uid":"99ccbff90b54af6e","status":"passed","time":{"start":1596005124496,"stop":1596005124497,"duration":1}},{"uid":"1cd01055a4395651","status":"passed","time":{"start":1594531289340,"stop":1594531289341,"duration":1}},{"uid":"ec365faf2c68024f","status":"passed","time":{"start":1594163434814,"stop":1594163434815,"duration":1}},{"uid":"7841db6e539293cc","status":"passed","time":{"start":1594163041203,"stop":1594163041204,"duration":1}}]},"4110170ab332498939ad9f2d0f38cf97":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"37fbb0401b01604d","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0}},{"uid":"6641c9ab33f4ea66","status":"passed","time":{"start":1732764221104,"stop":1732764221104,"duration":0}},{"uid":"d121ae5a75cc69b9","status":"passed","time":{"start":1732428196294,"stop":1732428196294,"duration":0}},{"uid":"139c28ca38674b14","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"7f23a2b3d247ad31","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"337bbc1cc632cf0323c6dd0c274cf890":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"48279c6ce1d9facc","status":"passed","time":{"start":1596047920513,"stop":1596047920515,"duration":2}},{"uid":"cee88e89df208e4f","status":"passed","time":{"start":1596005120406,"stop":1596005120409,"duration":3}},{"uid":"2888640c20968fc1","status":"passed","time":{"start":1594531285357,"stop":1594531285359,"duration":2}},{"uid":"50c311d4e2165600","status":"passed","time":{"start":1594163430799,"stop":1594163430804,"duration":5}},{"uid":"72f8eb876566d483","status":"passed","time":{"start":1594163037051,"stop":1594163037053,"duration":2}}]},"0236b069e77409277bb7591e93a2d821":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"28ad7dd78215e469","status":"passed","time":{"start":1596047924079,"stop":1596047924082,"duration":3}},{"uid":"929d68e86e333a47","status":"passed","time":{"start":1596005124179,"stop":1596005124182,"duration":3}},{"uid":"60a002680b8f9755","status":"passed","time":{"start":1594531289018,"stop":1594531289022,"duration":4}},{"uid":"25156512537447fb","status":"passed","time":{"start":1594163434522,"stop":1594163434525,"duration":3}},{"uid":"4ab23c4f0b69cfca","status":"passed","time":{"start":1594163040910,"stop":1594163040913,"duration":3}}]},"76cb71724bbc5595b66f218e2f828c5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f87e2580dd045df5","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0}},{"uid":"3b9e344534b3c5db","status":"passed","time":{"start":1732764218673,"stop":1732764218673,"duration":0}},{"uid":"2cc2dcb2d1d8eb43","status":"passed","time":{"start":1732428194023,"stop":1732428194025,"duration":2}},{"uid":"2460353038ce1955","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}},{"uid":"afdaa298aab7eba8","status":"passed","time":{"start":1724735127282,"stop":1724735127282,"duration":0}}]},"3181c0c2e1c9ba7b49a9f72369c7b0bb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"971c2aa5dd36f62c","status":"passed","time":{"start":1733030100543,"stop":1733030100543,"duration":0}},{"uid":"1abde016dd7f5ee7","status":"passed","time":{"start":1732764220590,"stop":1732764220590,"duration":0}},{"uid":"649728966aa92b06","status":"passed","time":{"start":1732428195890,"stop":1732428195890,"duration":0}},{"uid":"b96004f0b179053d","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"af5a357d104e13f2","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"e437e22193ec7315819824ea1255ab3f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"be79a08ed18e426","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0}},{"uid":"37c27a38809b08b4","status":"passed","time":{"start":1732764218891,"stop":1732764218891,"duration":0}},{"uid":"2b76b55d8c8f82d1","status":"passed","time":{"start":1732428194237,"stop":1732428194238,"duration":1}},{"uid":"614b9e2de4457676","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"e798d2f5cc38e024","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"b22abb76677627273b26e5c011545fb2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c515ef635fa26df1","status":"passed","time":{"start":1733030098614,"stop":1733030098630,"duration":16}},{"uid":"1a13c6a89153460b","status":"passed","time":{"start":1732764218545,"stop":1732764218545,"duration":0}},{"uid":"bd11ee5929c6c53a","status":"passed","time":{"start":1732428193899,"stop":1732428193899,"duration":0}},{"uid":"5dad026541a05e65","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}},{"uid":"36b9e5073b489f49","status":"passed","time":{"start":1724735127157,"stop":1724735127157,"duration":0}}]},"9301dd0240ac1992916dc97e56ba9814":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b59fa0a31eb9ce40","status":"passed","time":{"start":1596047924174,"stop":1596047924175,"duration":1}},{"uid":"a7f2c80fcabfa26f","status":"passed","time":{"start":1596005124275,"stop":1596005124275,"duration":0}},{"uid":"2b4668315481df04","status":"passed","time":{"start":1594531289110,"stop":1594531289111,"duration":1}},{"uid":"f1dd7560201f3c61","status":"passed","time":{"start":1594163434614,"stop":1594163434614,"duration":0}},{"uid":"2f93523973d23b07","status":"passed","time":{"start":1594163040999,"stop":1594163040999,"duration":0}}]},"d47ef982a9155fe594fea1ba842add64":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8a28a9133593bb88","status":"passed","time":{"start":1596047924128,"stop":1596047924129,"duration":1}},{"uid":"990aa76c2e4a8ae5","status":"passed","time":{"start":1596005124223,"stop":1596005124223,"duration":0}},{"uid":"b7a8a588df5fa84b","status":"passed","time":{"start":1594531289062,"stop":1594531289062,"duration":0}},{"uid":"a33bc88bf50f16ab","status":"passed","time":{"start":1594163434567,"stop":1594163434567,"duration":0}},{"uid":"fbc8353fef9eca75","status":"passed","time":{"start":1594163040953,"stop":1594163040953,"duration":0}}]},"9fe496d12a67f53b3208a0b823f2d8c3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e42b69525abdede6","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0}},{"uid":"b2f619fce2ea028d","status":"passed","time":{"start":1732764221144,"stop":1732764221144,"duration":0}},{"uid":"aa3ebaa27581f198","status":"passed","time":{"start":1732428196321,"stop":1732428196321,"duration":0}},{"uid":"ae7d3fce45bf33fb","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}},{"uid":"781079de643a720d","status":"passed","time":{"start":1724735129602,"stop":1724735129602,"duration":0}}]},"999238307e14499484c6cdf395220c6b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4223e436b2847599","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0}},{"uid":"d0931e78c129f8d8","status":"passed","time":{"start":1732764220261,"stop":1732764220261,"duration":0}},{"uid":"f91e38b8c375d31c","status":"passed","time":{"start":1732428195580,"stop":1732428195580,"duration":0}},{"uid":"90a24ba96aea3cfc","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"396df158495e2556","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"265b67c4139deaadb4d7c9416643f4c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"43faaa0cc937a56b","status":"passed","time":{"start":1596047919522,"stop":1596047919526,"duration":4}},{"uid":"5b536f28af25a867","status":"passed","time":{"start":1596005119526,"stop":1596005119533,"duration":7}},{"uid":"b08bc5faad2e150","status":"passed","time":{"start":1594531284426,"stop":1594531284430,"duration":4}},{"uid":"14356135013d67fa","status":"passed","time":{"start":1594163429980,"stop":1594163429983,"duration":3}},{"uid":"e3f41b2e2a75326","status":"passed","time":{"start":1594163036185,"stop":1594163036189,"duration":4}}]},"e9bfe5ed84336ceb50e9a2cd6d3752ed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a6a651d904577cf4","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0}},{"uid":"4438dce845a8b680","status":"passed","time":{"start":1732764219349,"stop":1732764219351,"duration":2}},{"uid":"d9328098007f6ade","status":"passed","time":{"start":1732428194672,"stop":1732428194672,"duration":0}},{"uid":"99a050e28b9f808c","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"a33fb2570aec1823","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"94e7f25439d88c0d2dae964ef4a033cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f4e7ccb7c6ccb848","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0}},{"uid":"edfd5d811972f420","status":"passed","time":{"start":1732764220683,"stop":1732764220683,"duration":0}},{"uid":"3529b67f8df1184b","status":"passed","time":{"start":1732428195975,"stop":1732428195976,"duration":1}},{"uid":"e5ae32dea8d8e5c3","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"547f04beeb8e83b4","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"a9a9cea93ff72e09882edc4b831ce933":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5488ed1b45d5018a","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"e695b3f4b0bdd51b","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"a076808e43574371","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"a492d74df14be54a","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}},{"uid":"c11bd2bbb0f17cd9","status":"passed","time":{"start":1724735129133,"stop":1724735129133,"duration":0}}]},"9e7357dc1f80abfb389c52315ac4c127":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":33,"unknown":0,"total":33},"items":[{"uid":"e5f4661ae40900e4","status":"passed","time":{"start":1596047923480,"stop":1596047923482,"duration":2}},{"uid":"99c0715ab0c78f38","status":"passed","time":{"start":1596005123484,"stop":1596005123487,"duration":3}},{"uid":"24e43a92770cf78b","status":"passed","time":{"start":1594531288395,"stop":1594531288398,"duration":3}},{"uid":"c3cec6d97d59b177","status":"passed","time":{"start":1594163433881,"stop":1594163433883,"duration":2}},{"uid":"93e9b2e4b1a2d9e7","status":"passed","time":{"start":1594163040369,"stop":1594163040371,"duration":2}}]},"3de540be96edd1a6ef052fccdb3f5cad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e578dac1473f78ec","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0}},{"uid":"ef53249dd3798b49","status":"passed","time":{"start":1732764221343,"stop":1732764221343,"duration":0}},{"uid":"4aa537b5c88883a7","status":"passed","time":{"start":1732428196475,"stop":1732428196475,"duration":0}},{"uid":"7c2750d825fae93b","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"85d9d1820cce2f7e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"cd64b52319d4c70d68e281e8561ab97f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"31ce0fdb81c2daf6","status":"passed","time":{"start":1733030098942,"stop":1733030098942,"duration":0}},{"uid":"6a3f85e29591c654","status":"passed","time":{"start":1732764218869,"stop":1732764218871,"duration":2}},{"uid":"2b89947e3a3ec46d","status":"passed","time":{"start":1732428194216,"stop":1732428194216,"duration":0}},{"uid":"627da61e5891aa44","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}},{"uid":"d8e9539521c4ca00","status":"passed","time":{"start":1724735127500,"stop":1724735127500,"duration":0}}]},"fb8836e996664af9461454bae0b6f79c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5c460b7e756cd57","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0}},{"uid":"d731ec2306766d91","status":"passed","time":{"start":1732764221362,"stop":1732764221363,"duration":1}},{"uid":"62ef482e2cb3493b","status":"passed","time":{"start":1732428196489,"stop":1732428196489,"duration":0}},{"uid":"1b3bd0a5ea1aa072","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"2030ea00b6998f67","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"f2e69721b9f301c2454fa419ac365031":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"26189d3cfda1b8d1","status":"passed","time":{"start":1733030098614,"stop":1733030098614,"duration":0}},{"uid":"a6d26dfb90ab4062","status":"passed","time":{"start":1732764218536,"stop":1732764218536,"duration":0}},{"uid":"c77f51e83226296c","status":"passed","time":{"start":1732428193889,"stop":1732428193889,"duration":0}},{"uid":"693c5b2693478689","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}},{"uid":"d6d06cbc227917e","status":"passed","time":{"start":1724735127122,"stop":1724735127141,"duration":19}}]},"7059a00425101b60df77a404c614b2f7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":22,"unknown":0,"total":22},"items":[{"uid":"c993ad420a98b20b","status":"passed","time":{"start":1596047919033,"stop":1596047919039,"duration":6}},{"uid":"7e3e5f0e6b2ac00a","status":"passed","time":{"start":1596005119072,"stop":1596005119081,"duration":9}},{"uid":"66d603e02f4c879d","status":"passed","time":{"start":1594531284009,"stop":1594531284014,"duration":5}},{"uid":"290ff236df1a2651","status":"passed","time":{"start":1594163429583,"stop":1594163429588,"duration":5}},{"uid":"3bb28b482f891297","status":"passed","time":{"start":1594163035742,"stop":1594163035748,"duration":6}}]},"ef55d8f6f41b96bb67ad31442c22876f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"972994500e7168db","status":"passed","time":{"start":1596047920683,"stop":1596047923226,"duration":2543}},{"uid":"b0f33eb57d8e336c","status":"passed","time":{"start":1596005120573,"stop":1596005123219,"duration":2646}},{"uid":"4011c10620d1ee46","status":"passed","time":{"start":1594531285504,"stop":1594531288155,"duration":2651}},{"uid":"3a3d4867ba83b89a","status":"passed","time":{"start":1594163430990,"stop":1594163433685,"duration":2695}},{"uid":"72b5fe79c601386c","status":"passed","time":{"start":1594163037230,"stop":1594163040153,"duration":2923}}]},"c5f1cfe64ff8d3a4f16a4166c571797e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"22bb7ddce4971121","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0}},{"uid":"60f7c96f923539a5","status":"passed","time":{"start":1732764219159,"stop":1732764219160,"duration":1}},{"uid":"6076e8e1aaaa11ab","status":"passed","time":{"start":1732428194488,"stop":1732428194489,"duration":1}},{"uid":"11b652a05502070f","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}},{"uid":"e650d3e05f6d005c","status":"passed","time":{"start":1724735127875,"stop":1724735127875,"duration":0}}]},"8e87d116e1cdd640cae9c4bfd3a15981":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c678c03e12583e98","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0}},{"uid":"c00621abb22a9be3","status":"passed","time":{"start":1732764218782,"stop":1732764218782,"duration":0}},{"uid":"ac136a3215f7ad6c","status":"passed","time":{"start":1732428194132,"stop":1732428194132,"duration":0}},{"uid":"d558fd9b3bcee4ae","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}},{"uid":"6ce4bba2ff4664c2","status":"passed","time":{"start":1724735127407,"stop":1724735127407,"duration":0}}]},"4cb72e5cd027f42401e0d39ffc867cce":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a17af77049aab7bd","status":"passed","time":{"start":1596047924486,"stop":1596047924487,"duration":1}},{"uid":"73308d647f298d7b","status":"passed","time":{"start":1596005124589,"stop":1596005124590,"duration":1}},{"uid":"7f0f8fd6b42d9dfb","status":"passed","time":{"start":1594531289454,"stop":1594531289455,"duration":1}},{"uid":"62f6b3da69215445","status":"passed","time":{"start":1594163434905,"stop":1594163434907,"duration":2}},{"uid":"2aab30355c7660ab","status":"passed","time":{"start":1594163041296,"stop":1594163041297,"duration":1}}]},"a7b5f0a3a7cd2fe8faed75e5c4a52138":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"315e825b7f114d5b","status":"passed","time":{"start":1733030098942,"stop":1733030098958,"duration":16}},{"uid":"720b65d3a7d8ec34","status":"passed","time":{"start":1732764218877,"stop":1732764218877,"duration":0}},{"uid":"7087926d4a83e9d4","status":"passed","time":{"start":1732428194224,"stop":1732428194224,"duration":0}},{"uid":"d4c41912963969d7","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"5ecd182a341dd7b4","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"ec000a9da476f6dff77369d6e8beae11":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":27,"unknown":0,"total":27},"items":[{"uid":"d73e082fd035c1ae","status":"passed","time":{"start":1596047920375,"stop":1596047920377,"duration":2}},{"uid":"6e8d5feddee90c92","status":"passed","time":{"start":1596005120273,"stop":1596005120277,"duration":4}},{"uid":"46bbae8bf33b4f59","status":"passed","time":{"start":1594531285230,"stop":1594531285233,"duration":3}},{"uid":"288bb7cb21bbed23","status":"passed","time":{"start":1594163430703,"stop":1594163430707,"duration":4}},{"uid":"1db0e5098d440559","status":"passed","time":{"start":1594163036927,"stop":1594163036928,"duration":1}}]},"4ffbfcd08c63c75577964e4b263564bd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ca1eccae180a083e","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0}},{"uid":"98ca489a74667507","status":"passed","time":{"start":1732764218591,"stop":1732764218591,"duration":0}},{"uid":"8804093a9c3b17d","status":"passed","time":{"start":1732428193949,"stop":1732428193951,"duration":2}},{"uid":"d9a6d590487a20fd","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"7e0e76f32ac7ce4e","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"37cc6f6af3c2bfb1f6d9c3f30ad04774":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"544f917f30323c26","status":"passed","time":{"start":1596047924149,"stop":1596047924151,"duration":2}},{"uid":"afe0a378e2203577","status":"passed","time":{"start":1596005124243,"stop":1596005124247,"duration":4}},{"uid":"977c2304cf2a6f66","status":"passed","time":{"start":1594531289083,"stop":1594531289084,"duration":1}},{"uid":"e0b7907f3f1d33a6","status":"passed","time":{"start":1594163434586,"stop":1594163434587,"duration":1}},{"uid":"924579fed4477ca6","status":"passed","time":{"start":1594163040972,"stop":1594163040974,"duration":2}}]},"94f83aeabc8bb6c972cdb636509770fa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"f55783c4fa90131e","status":"passed","time":{"start":1733030100726,"stop":1733030100726,"duration":0}}]},"629f8f3c77ceed21b9aefeb6ebebc433":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8caf8fe76e46aa0f","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0}},{"uid":"cb9f6d4c2aaf90e3","status":"passed","time":{"start":1732764220509,"stop":1732764220509,"duration":0}},{"uid":"44c1e35d7a7b2adb","status":"passed","time":{"start":1732428195817,"stop":1732428195818,"duration":1}},{"uid":"e0851c0ba53ec6a9","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"776a48c95cfacbf7","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"0694e08a88ff80537fae0ce33871b5be":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"fb676676627eae5f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098646,"stop":1733030098646,"duration":0}},{"uid":"32a39f3c0fa23567","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218562,"stop":1732764218562,"duration":0}},{"uid":"b7243d74fc99fb8b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193918,"stop":1732428193918,"duration":0}},{"uid":"cf3552eb00513a1a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"f4c5ff18f0370583","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"8c287dae332df512fc4a9755020ffedc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b40f27be3da7edd7","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0}},{"uid":"ff18bec5c293c228","status":"passed","time":{"start":1732764220975,"stop":1732764220977,"duration":2}},{"uid":"614133ca9c69e105","status":"passed","time":{"start":1732428196195,"stop":1732428196195,"duration":0}},{"uid":"6d9afe9fda19581e","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"5e8c0121e99e8c0","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"8958d176e6da23b5aa61f0da94fadb27":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"49c4bb04828a5c06","status":"passed","time":{"start":1596047924452,"stop":1596047924453,"duration":1}},{"uid":"2206ef27ed4fd89","status":"passed","time":{"start":1596005124554,"stop":1596005124556,"duration":2}},{"uid":"76af808094d99686","status":"passed","time":{"start":1594531289410,"stop":1594531289412,"duration":2}},{"uid":"79c1649c8f1501db","status":"passed","time":{"start":1594163434871,"stop":1594163434872,"duration":1}},{"uid":"b8a2cb52c3ed305","status":"passed","time":{"start":1594163041262,"stop":1594163041263,"duration":1}}]},"56f5382d4c162f3df4d4a7f43f75f3c8":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"261e01c60cd0001f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919092,"stop":1596047919092,"duration":0}},{"uid":"1425aefe6b9d52dc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119159,"stop":1596005119159,"duration":0}},{"uid":"19581bdf6c2f6cef","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284048,"stop":1594531284048,"duration":0}},{"uid":"bdf9784089c24697","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429619,"stop":1594163429619,"duration":0}},{"uid":"25de3eff2e4f2b01","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035780,"stop":1594163035780,"duration":0}}]},"d96286d004d21bd579d7fafcd6645054":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fde3570837994bc4","status":"passed","time":{"start":1596047920499,"stop":1596047920502,"duration":3}},{"uid":"8e29639e2599c5a","status":"passed","time":{"start":1596005120389,"stop":1596005120393,"duration":4}},{"uid":"8a781f40dc7409ff","status":"passed","time":{"start":1594531285323,"stop":1594531285325,"duration":2}},{"uid":"6d22a2d4e160dbcf","status":"passed","time":{"start":1594163430785,"stop":1594163430786,"duration":1}},{"uid":"ab45e98f7489faed","status":"passed","time":{"start":1594163037033,"stop":1594163037037,"duration":4}}]},"aa4dfcf7aba7c99039cc0fa1e6688182":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":26,"unknown":0,"total":26},"items":[{"uid":"4c535348e552b6fc","status":"passed","time":{"start":1596047923646,"stop":1596047923647,"duration":1}},{"uid":"f1fdcdfa6bef02ab","status":"passed","time":{"start":1596005123675,"stop":1596005123678,"duration":3}},{"uid":"4b4e4c1672d978df","status":"passed","time":{"start":1594531288591,"stop":1594531288593,"duration":2}},{"uid":"6d9a87548ef8bc1f","status":"passed","time":{"start":1594163434037,"stop":1594163434038,"duration":1}},{"uid":"347394e0a35b39cb","status":"passed","time":{"start":1594163040516,"stop":1594163040517,"duration":1}}]},"262134764fa6664c0e3055da165452d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f4915582d5908ed3","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0}},{"uid":"c005f5247ce8619b","status":"passed","time":{"start":1732764220948,"stop":1732764220950,"duration":2}},{"uid":"71e40623077306da","status":"passed","time":{"start":1732428196174,"stop":1732428196175,"duration":1}},{"uid":"1c922c5f58027b49","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"fed28c7a9755def6","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"e46a6ac896f2504c579c4bb2dd203dd3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c54ee6d74b1751b","status":"passed","time":{"start":1596047924170,"stop":1596047924170,"duration":0}},{"uid":"b56e6bd6da1d60e8","status":"passed","time":{"start":1596005124270,"stop":1596005124270,"duration":0}},{"uid":"95ee071b31ee5509","status":"passed","time":{"start":1594531289104,"stop":1594531289105,"duration":1}},{"uid":"22cf080fd44932a8","status":"passed","time":{"start":1594163434608,"stop":1594163434608,"duration":0}},{"uid":"89d8193cb4e366e3","status":"passed","time":{"start":1594163040993,"stop":1594163040994,"duration":1}}]},"e47953912bc73286c8a01ce448ee3c54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"30779503c72bcec6","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0}},{"uid":"c19e4739f2d4d64c","status":"passed","time":{"start":1732764220827,"stop":1732764220828,"duration":1}},{"uid":"b897401968bf0d8","status":"passed","time":{"start":1732428196084,"stop":1732428196084,"duration":0}},{"uid":"7a1019ba1beb3118","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"1c92b73c681a87bf","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"0b146f7fbac52b042804286da8716f6b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1c66d03c44b01cf6","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0}},{"uid":"ee07ce647fa212f","status":"passed","time":{"start":1732764220284,"stop":1732764220287,"duration":3}},{"uid":"25fd6f6c5cfe2b58","status":"passed","time":{"start":1732428195606,"stop":1732428195607,"duration":1}},{"uid":"8655885cb5db7a58","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"578c3a6cd3e7e40f","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"27ae718be00b2e9f316c37c338cb2894":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8db7c8bf0abe07bc","status":"passed","time":{"start":1733030100481,"stop":1733030100481,"duration":0}},{"uid":"9246dbe4ecdc42ce","status":"passed","time":{"start":1732764220516,"stop":1732764220516,"duration":0}},{"uid":"d562abb8385a61c5","status":"passed","time":{"start":1732428195826,"stop":1732428195826,"duration":0}},{"uid":"996165a0ada95681","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"611b4f8cf836294a","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"27e9a83bc54e6424b8009f8d82535881":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"12a2d14cf759563d","status":"passed","time":{"start":1596047924610,"stop":1596047924611,"duration":1}},{"uid":"f8a34cd2c7d65fe4","status":"passed","time":{"start":1596005124721,"stop":1596005124722,"duration":1}},{"uid":"ec46809c88927813","status":"passed","time":{"start":1594531289609,"stop":1594531289610,"duration":1}},{"uid":"53cc9273c8cf707b","status":"passed","time":{"start":1594163435031,"stop":1594163435032,"duration":1}},{"uid":"e7e0aa35a163d92a","status":"passed","time":{"start":1594163041436,"stop":1594163041437,"duration":1}}]},"a2768f68ae825ba2b78473ceb0eb184a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b59318a9c97ef9f1","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0}},{"uid":"c31558e9c7981ac7","status":"passed","time":{"start":1732764221308,"stop":1732764221308,"duration":0}},{"uid":"893dcbf3da59eb02","status":"passed","time":{"start":1732428196446,"stop":1732428196446,"duration":0}},{"uid":"af580569ddf3e366","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"ffc3f48cf5f0bf9f","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"eb0582ce0674121869dd4f6fce46e7f3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a1e3818ccb62ed24","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0}},{"uid":"9e71e34228180c1c","status":"passed","time":{"start":1732764220822,"stop":1732764220823,"duration":1}},{"uid":"158f20a061140f84","status":"passed","time":{"start":1732428196079,"stop":1732428196079,"duration":0}},{"uid":"e6d62aae7d602336","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}},{"uid":"a2cb5446a34df86","status":"passed","time":{"start":1724735129367,"stop":1724735129367,"duration":0}}]},"ebccba1809989898eb718f4c9be6ac5c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4475cf38101ddff9","status":"passed","time":{"start":1596047923549,"stop":1596047923551,"duration":2}},{"uid":"d3e1cbe30154ab3e","status":"passed","time":{"start":1596005123561,"stop":1596005123564,"duration":3}},{"uid":"712cd9a3ec64852d","status":"passed","time":{"start":1594531288489,"stop":1594531288491,"duration":2}},{"uid":"624758f15755b29f","status":"passed","time":{"start":1594163433950,"stop":1594163433951,"duration":1}},{"uid":"2726ed17b195a3c4","status":"passed","time":{"start":1594163040429,"stop":1594163040430,"duration":1}}]},"47664c0f62c7051b733823a3729b3581":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dcf4a7bf7583e93c","status":"passed","time":{"start":1596047924206,"stop":1596047924207,"duration":1}},{"uid":"7c09b81da3d42628","status":"passed","time":{"start":1596005124310,"stop":1596005124311,"duration":1}},{"uid":"99a20a20bb2bf992","status":"passed","time":{"start":1594531289141,"stop":1594531289142,"duration":1}},{"uid":"22cfbed0b5529495","status":"passed","time":{"start":1594163434643,"stop":1594163434644,"duration":1}},{"uid":"500335dfbffd0ef9","status":"passed","time":{"start":1594163041032,"stop":1594163041033,"duration":1}}]},"6c0e4715e324eb0b695da8f41f3f1ffc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3eb30e8474556824","status":"passed","time":{"start":1596047924372,"stop":1596047924373,"duration":1}},{"uid":"d5787cde07d46fdf","status":"passed","time":{"start":1596005124476,"stop":1596005124478,"duration":2}},{"uid":"11e9014b0f230fc","status":"passed","time":{"start":1594531289319,"stop":1594531289320,"duration":1}},{"uid":"9fdd4e9dffee2ec6","status":"passed","time":{"start":1594163434793,"stop":1594163434794,"duration":1}},{"uid":"45bd1a2ff639080c","status":"passed","time":{"start":1594163041183,"stop":1594163041184,"duration":1}}]},"d8282a7eb3ad08bfe01ca861e38bf2cb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8150d86645eb36cf","status":"passed","time":{"start":1596047924433,"stop":1596047924435,"duration":2}},{"uid":"bb6bb9c3ab9bb020","status":"passed","time":{"start":1596005124534,"stop":1596005124537,"duration":3}},{"uid":"b487e04f080cc503","status":"passed","time":{"start":1594531289387,"stop":1594531289389,"duration":2}},{"uid":"584221466e04ac28","status":"passed","time":{"start":1594163434852,"stop":1594163434853,"duration":1}},{"uid":"713da3149ef8c08e","status":"passed","time":{"start":1594163041242,"stop":1594163041243,"duration":1}}]},"4b9df5c8546e5aa2b71e686027672d5a":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"a225da0a45c18da1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919562,"stop":1596047919562,"duration":0}},{"uid":"dbda4089f7f1a910","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119558,"stop":1596005119558,"duration":0}},{"uid":"a3702374858b00d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284459,"stop":1594531284459,"duration":0}},{"uid":"efb88c24de2576cf","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430012,"stop":1594163430012,"duration":0}},{"uid":"9881c9d8f7a6cdd7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036228,"stop":1594163036228,"duration":0}}]},"bf9ab588ec37b96b09a8d0c56f74fc4a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c8d9a4d573dbda2b","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0}},{"uid":"fef2d68159e448ff","status":"passed","time":{"start":1732764218932,"stop":1732764218932,"duration":0}},{"uid":"533bf937be1aa466","status":"passed","time":{"start":1732428194277,"stop":1732428194277,"duration":0}},{"uid":"57efbea0ccf3907a","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"84ae1ddd95d9c6d3","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"5268fe9db165b30e7ec4383b2c210a70":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e8a8027406157d74","status":"passed","time":{"start":1596047923698,"stop":1596047923702,"duration":4}},{"uid":"8457bf3968a42f0d","status":"passed","time":{"start":1596005123727,"stop":1596005123729,"duration":2}},{"uid":"7fcb17208f3d91a9","status":"passed","time":{"start":1594531288639,"stop":1594531288641,"duration":2}},{"uid":"58441fc0dc5ca6b8","status":"passed","time":{"start":1594163434078,"stop":1594163434081,"duration":3}},{"uid":"52c506e3bc0042a","status":"passed","time":{"start":1594163040553,"stop":1594163040554,"duration":1}}]},"1ce6947fd0ebccbdeafac537499a9214":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4e1d4d9fac88298e","status":"passed","time":{"start":1596047924534,"stop":1596047924535,"duration":1}},{"uid":"ce2b2a87410f33de","status":"passed","time":{"start":1596005124639,"stop":1596005124642,"duration":3}},{"uid":"131b2a13475e3972","status":"passed","time":{"start":1594531289516,"stop":1594531289518,"duration":2}},{"uid":"78cb835834d1ed2e","status":"passed","time":{"start":1594163434954,"stop":1594163434955,"duration":1}},{"uid":"8ec62a0defba3c67","status":"passed","time":{"start":1594163041354,"stop":1594163041355,"duration":1}}]},"571e6c8954ee703e39040eac41d8ca2e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"df897630ab89a52","status":"passed","time":{"start":1596047919453,"stop":1596047919454,"duration":1}},{"uid":"da6aa960f9648f20","status":"passed","time":{"start":1596005119473,"stop":1596005119473,"duration":0}},{"uid":"62f8188f8b022026","status":"passed","time":{"start":1594531284382,"stop":1594531284383,"duration":1}},{"uid":"d168a7a38e51588a","status":"passed","time":{"start":1594163429937,"stop":1594163429938,"duration":1}},{"uid":"966bde63ac98e56c","status":"passed","time":{"start":1594163036129,"stop":1594163036130,"duration":1}}]},"a815ca6b5c6ae6833c572d19bb20ed19":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"297ed61987fc879a","status":"passed","time":{"start":1596047923337,"stop":1596047923340,"duration":3}},{"uid":"25f6db093b865f6e","status":"passed","time":{"start":1596005123342,"stop":1596005123347,"duration":5}},{"uid":"b7a56e0b0e08277a","status":"passed","time":{"start":1594531288260,"stop":1594531288260,"duration":0}},{"uid":"5451a9c30a83c42a","status":"passed","time":{"start":1594163433783,"stop":1594163433784,"duration":1}},{"uid":"9cf7e0428eee6060","status":"passed","time":{"start":1594163040258,"stop":1594163040259,"duration":1}}]},"644dd835a63b65e4d48cb2104cbbc61a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"23d3979fba69cd62","status":"passed","time":{"start":1596047924017,"stop":1596047924019,"duration":2}},{"uid":"dc2a945fd2226621","status":"passed","time":{"start":1596005124108,"stop":1596005124110,"duration":2}},{"uid":"71844b3661fbfdc1","status":"passed","time":{"start":1594531288958,"stop":1594531288959,"duration":1}},{"uid":"d4b963e4cdba7153","status":"passed","time":{"start":1594163434452,"stop":1594163434454,"duration":2}},{"uid":"f43cc1f7e002af99","status":"passed","time":{"start":1594163040832,"stop":1594163040833,"duration":1}}]},"663be697fad5745815fa1d52a2485aaa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"12012737d3600917","status":"passed","time":{"start":1596047924159,"stop":1596047924159,"duration":0}},{"uid":"ad95e7003b33706d","status":"passed","time":{"start":1596005124257,"stop":1596005124257,"duration":0}},{"uid":"df348bcd64efc627","status":"passed","time":{"start":1594531289094,"stop":1594531289094,"duration":0}},{"uid":"5511a03d07c814c6","status":"passed","time":{"start":1594163434596,"stop":1594163434597,"duration":1}},{"uid":"ca9b4c4f75fc79d6","status":"passed","time":{"start":1594163040983,"stop":1594163040983,"duration":0}}]},"0ca6c261f6caf983cecc5d9fa898244b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"913fbd5c2da31308","status":"passed","time":{"start":1733030098724,"stop":1733030098724,"duration":0}},{"uid":"d5aba2cd944d7efd","status":"passed","time":{"start":1732764218655,"stop":1732764218655,"duration":0}},{"uid":"a3395496d8bde803","status":"passed","time":{"start":1732428194006,"stop":1732428194008,"duration":2}},{"uid":"f80099cf6c294d2b","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"99f691b62c390084","status":"passed","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"b223f14337b9b49b6e64d94d9479e857":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a5961784f4ddfa34","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0}},{"uid":"62a6bbd8d87be20e","status":"passed","time":{"start":1732764219232,"stop":1732764219232,"duration":0}},{"uid":"777edc280c74020d","status":"passed","time":{"start":1732428194550,"stop":1732428194550,"duration":0}},{"uid":"585949d19b46a5d2","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"66f1b8d1e5ed1dbe","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"cff2b633528ecd689efa06bc07b0cbad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"221803c6f8353887","status":"passed","time":{"start":1596047924504,"stop":1596047924505,"duration":1}},{"uid":"88295a1e0a953d36","status":"passed","time":{"start":1596005124609,"stop":1596005124610,"duration":1}},{"uid":"c20cde61f067e395","status":"passed","time":{"start":1594531289477,"stop":1594531289477,"duration":0}},{"uid":"b6459e84010f0c41","status":"passed","time":{"start":1594163434925,"stop":1594163434925,"duration":0}},{"uid":"4b1951d683a33e6c","status":"passed","time":{"start":1594163041317,"stop":1594163041323,"duration":6}}]},"c8e68699f69722b658f5f06dbcd81106":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"9d452c5742c1a196","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919593,"stop":1596047919593,"duration":0}},{"uid":"d2368433f3eaa614","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119578,"stop":1596005119578,"duration":0}},{"uid":"9175f83d2e02a609","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284476,"stop":1594531284476,"duration":0}},{"uid":"449cc0b01c523314","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430029,"stop":1594163430029,"duration":0}},{"uid":"30f8cd08dbb389dd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036249,"stop":1594163036249,"duration":0}}]},"bf37412e0e610d07d951e5fde674ec97":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"40b9b78f2d258cf9","status":"passed","time":{"start":1733030099192,"stop":1733030099208,"duration":16}},{"uid":"3c7a781e3674db5e","status":"passed","time":{"start":1732764219151,"stop":1732764219153,"duration":2}},{"uid":"2b98fb3b88f75199","status":"passed","time":{"start":1732428194480,"stop":1732428194480,"duration":0}},{"uid":"369d691aa58bf89d","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"2c4e292a782b80e3","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"f5e7301aea89b5d40e1159c0857f273c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":25,"unknown":0,"total":25},"items":[{"uid":"c613a638755d07e5","status":"passed","time":{"start":1596047920355,"stop":1596047920358,"duration":3}},{"uid":"293d0bf685ed1b1d","status":"passed","time":{"start":1596005120259,"stop":1596005120260,"duration":1}},{"uid":"9ec6eb7b9588290","status":"passed","time":{"start":1594531285220,"stop":1594531285222,"duration":2}},{"uid":"c64d36f6eb7683d8","status":"passed","time":{"start":1594163430692,"stop":1594163430693,"duration":1}},{"uid":"2a04fd28f8355e23","status":"passed","time":{"start":1594163036917,"stop":1594163036918,"duration":1}}]},"10af3a5c9f6fb077c8237771f4b70e20":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2de9285990285353","status":"passed","time":{"start":1733030098896,"stop":1733030098896,"duration":0}},{"uid":"e91954f86960f5cf","status":"passed","time":{"start":1732764218819,"stop":1732764218819,"duration":0}},{"uid":"5d8c14adba840438","status":"passed","time":{"start":1732428194163,"stop":1732428194163,"duration":0}},{"uid":"ace382695affabdf","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}},{"uid":"aca9d99cb0e5842e","status":"passed","time":{"start":1724735127438,"stop":1724735127453,"duration":15}}]},"45eae88b29d1063162552e183c7ef4f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7a84f8cdf7ca164","status":"passed","time":{"start":1596047924361,"stop":1596047924362,"duration":1}},{"uid":"48a0acd224010e8","status":"passed","time":{"start":1596005124465,"stop":1596005124466,"duration":1}},{"uid":"823a4e83429c2d1b","status":"passed","time":{"start":1594531289307,"stop":1594531289308,"duration":1}},{"uid":"85c97a97b0e3037f","status":"passed","time":{"start":1594163434784,"stop":1594163434785,"duration":1}},{"uid":"9181d4db84444f93","status":"passed","time":{"start":1594163041174,"stop":1594163041175,"duration":1}}]},"b85aee9ae2ee06fc56de8481df862c73":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"69f67038b11a4861","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0}},{"uid":"980af150a499b4e9","status":"passed","time":{"start":1732764220704,"stop":1732764220704,"duration":0}},{"uid":"419686fbcf063822","status":"passed","time":{"start":1732428195990,"stop":1732428195990,"duration":0}},{"uid":"9a325845218dd6ae","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"d837297408a13c1e","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"2f8f18e1fa04b0776df535518795568e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"64318d4a8a2213e6","status":"passed","time":{"start":1596047924674,"stop":1596047924674,"duration":0}},{"uid":"6fbbde4ffedbca69","status":"passed","time":{"start":1596005124812,"stop":1596005124813,"duration":1}},{"uid":"f7b04ec70e1e2998","status":"passed","time":{"start":1594531289689,"stop":1594531289690,"duration":1}},{"uid":"96a6add505173a69","status":"passed","time":{"start":1594163435095,"stop":1594163435096,"duration":1}},{"uid":"9eb12b7dcf0dfb1e","status":"passed","time":{"start":1594163041512,"stop":1594163041513,"duration":1}}]},"80de0b9e588cbd07398d6b564308167b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9f8c57de0f878507","status":"passed","time":{"start":1596047923248,"stop":1596047923249,"duration":1}},{"uid":"450d78c633ea7054","status":"passed","time":{"start":1596005123242,"stop":1596005123243,"duration":1}},{"uid":"6b85938e19540057","status":"passed","time":{"start":1594531288175,"stop":1594531288176,"duration":1}},{"uid":"5a024a88331bc5f5","status":"passed","time":{"start":1594163433705,"stop":1594163433705,"duration":0}},{"uid":"190a2ce33b0b8ce6","status":"passed","time":{"start":1594163040173,"stop":1594163040173,"duration":0}}]},"a12b9599b8bf7b92d2c2e1462a17342d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9eaae816682ea6e3","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0}},{"uid":"112ca50049d27c","status":"passed","time":{"start":1732764221286,"stop":1732764221288,"duration":2}},{"uid":"973452fbe07efc18","status":"passed","time":{"start":1732428196425,"stop":1732428196425,"duration":0}},{"uid":"ede582dcc2b34bf3","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"b32352034ba0a692","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"a21a46b7b739add8ed87983bb6839a80":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3f19c723aec9bbbd","status":"passed","time":{"start":1596047923411,"stop":1596047923412,"duration":1}},{"uid":"d92c197afdcf59d5","status":"passed","time":{"start":1596005123408,"stop":1596005123409,"duration":1}},{"uid":"2c0ade2f647cae7f","status":"passed","time":{"start":1594531288334,"stop":1594531288335,"duration":1}},{"uid":"718ec6b8c7e864a7","status":"passed","time":{"start":1594163433830,"stop":1594163433831,"duration":1}},{"uid":"e83d3154896ac00b","status":"passed","time":{"start":1594163040313,"stop":1594163040315,"duration":2}}]},"f04224c3027ffbdd1d73330dddec4357":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"78ac10cd954d464d","status":"passed","time":{"start":1596047923978,"stop":1596047923979,"duration":1}},{"uid":"95e32c259c3e91eb","status":"passed","time":{"start":1596005124060,"stop":1596005124060,"duration":0}},{"uid":"82720fd165081397","status":"passed","time":{"start":1594531288913,"stop":1594531288913,"duration":0}},{"uid":"cabbdbf7c4dc2fca","status":"passed","time":{"start":1594163434404,"stop":1594163434405,"duration":1}},{"uid":"d2301e3f4bd8c947","status":"passed","time":{"start":1594163040792,"stop":1594163040793,"duration":1}}]},"4355f798d978bdfe8915957eb9636552":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"9cc2024d730e5f8a","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0}}]},"884fcf3671ca321076723a238ddb92c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"24f0384efd85ae74","status":"passed","time":{"start":1733030100617,"stop":1733030100617,"duration":0}},{"uid":"5bf735ebb9d90923","status":"passed","time":{"start":1732764220651,"stop":1732764220651,"duration":0}},{"uid":"4750955362b24610","status":"passed","time":{"start":1732428195946,"stop":1732428195947,"duration":1}},{"uid":"884c8d1f852cc3dc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"dba3101c45ee1611","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"68fe6059f779e771c85a9294453424b7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"494b2d233c0d079a","status":"passed","time":{"start":1596047920437,"stop":1596047920439,"duration":2}},{"uid":"284480376794b8c","status":"passed","time":{"start":1596005120337,"stop":1596005120339,"duration":2}},{"uid":"b1cec2c38735a32d","status":"passed","time":{"start":1594531285284,"stop":1594531285285,"duration":1}},{"uid":"a4c3ea1e7d09b923","status":"passed","time":{"start":1594163430750,"stop":1594163430751,"duration":1}},{"uid":"cc1fca336626fc40","status":"passed","time":{"start":1594163036982,"stop":1594163036984,"duration":2}}]},"8be748c3d426c1b249bd90b2b524810d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ee3c307a9855a6d2","status":"passed","time":{"start":1596047920540,"stop":1596047920540,"duration":0}},{"uid":"f6e3ab7f8304d678","status":"passed","time":{"start":1596005120435,"stop":1596005120436,"duration":1}},{"uid":"f03ad10b2c6c1d5f","status":"passed","time":{"start":1594531285383,"stop":1594531285384,"duration":1}},{"uid":"13e172e2a983a48","status":"passed","time":{"start":1594163430835,"stop":1594163430837,"duration":2}},{"uid":"cb83fca88984b893","status":"passed","time":{"start":1594163037087,"stop":1594163037088,"duration":1}}]},"47a8a15643c132c9b9f0d902bcff28dd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c1393951861e51a9","status":"passed","time":{"start":1733030099302,"stop":1733030099302,"duration":0}},{"uid":"4d4729a99109106e","status":"passed","time":{"start":1732764219269,"stop":1732764219269,"duration":0}},{"uid":"d19efceb39f40f4f","status":"passed","time":{"start":1732428194587,"stop":1732428194587,"duration":0}},{"uid":"41efd0d786aed73","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}},{"uid":"d1585e7c78fd8d06","status":"passed","time":{"start":1724735127984,"stop":1724735127984,"duration":0}}]},"92164414ad94bf1f5638230345fa606d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ee5910cfe65a88ee","status":"passed","time":{"start":1733030099255,"stop":1733030099255,"duration":0}},{"uid":"8e4b6f6bd251566","status":"passed","time":{"start":1732764219215,"stop":1732764219215,"duration":0}},{"uid":"5d373bcba925975c","status":"passed","time":{"start":1732428194535,"stop":1732428194535,"duration":0}},{"uid":"b29b4bc1c1fe7917","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}},{"uid":"d8f6e0603b79e82b","status":"passed","time":{"start":1724735127922,"stop":1724735127922,"duration":0}}]},"fe70f843c5545a5667958dc2a89ae238":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"62762b3c282c644b","status":"passed","time":{"start":1596047923725,"stop":1596047923726,"duration":1}},{"uid":"48ea52821d6aa2a8","status":"passed","time":{"start":1596005123756,"stop":1596005123757,"duration":1}},{"uid":"468448816dd27400","status":"passed","time":{"start":1594531288662,"stop":1594531288665,"duration":3}},{"uid":"34ac245591c6d4ad","status":"passed","time":{"start":1594163434104,"stop":1594163434105,"duration":1}},{"uid":"655fb90914064be1","status":"passed","time":{"start":1594163040571,"stop":1594163040572,"duration":1}}]},"a59ece93d187b6f3f1677fc20ca9b1f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e94cf5e29247be9a","status":"passed","time":{"start":1596047924467,"stop":1596047924468,"duration":1}},{"uid":"b561cf552d5e73c3","status":"passed","time":{"start":1596005124571,"stop":1596005124572,"duration":1}},{"uid":"9feae1e507d9e17b","status":"passed","time":{"start":1594531289432,"stop":1594531289433,"duration":1}},{"uid":"6f1625cf376dfbc9","status":"passed","time":{"start":1594163434886,"stop":1594163434887,"duration":1}},{"uid":"d9439e6355e142f2","status":"passed","time":{"start":1594163041278,"stop":1594163041278,"duration":0}}]},"73977fc23d0427de5570dbdeaca30321":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"83ae1189d3669b33","status":"passed","time":{"start":1733030100247,"stop":1733030100247,"duration":0}},{"uid":"ff9c64bdd3b3fc0c","status":"passed","time":{"start":1732764220276,"stop":1732764220276,"duration":0}},{"uid":"ef905ece7eeedc77","status":"passed","time":{"start":1732428195597,"stop":1732428195598,"duration":1}},{"uid":"fa5b03edd274b2cd","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}},{"uid":"b98125cb150cd794","status":"passed","time":{"start":1724735128899,"stop":1724735128899,"duration":0}}]},"7c59feaf54bd4089e056f041844e3fe6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a90239b6ef90f6a6","status":"passed","time":{"start":1733030098911,"stop":1733030098911,"duration":0}},{"uid":"1251fa1056fea3d4","status":"passed","time":{"start":1732764218832,"stop":1732764218832,"duration":0}},{"uid":"1265911f14bcd919","status":"passed","time":{"start":1732428194179,"stop":1732428194180,"duration":1}},{"uid":"98d0f495e6dcba7e","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}},{"uid":"df3147d31fee6968","status":"passed","time":{"start":1724735127453,"stop":1724735127453,"duration":0}}]},"7e72b93ac2dd3d898a0bd8875f55f383":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":30,"unknown":0,"total":30},"items":[{"uid":"86c04bcc57c9b2e7","status":"passed","time":{"start":1596047919283,"stop":1596047919288,"duration":5}},{"uid":"718e9583733eb428","status":"passed","time":{"start":1596005119302,"stop":1596005119303,"duration":1}},{"uid":"fef40d97bc21931f","status":"passed","time":{"start":1594531284197,"stop":1594531284197,"duration":0}},{"uid":"1864446173135965","status":"passed","time":{"start":1594163429764,"stop":1594163429765,"duration":1}},{"uid":"1a6c79c62f0b0e02","status":"passed","time":{"start":1594163035959,"stop":1594163035960,"duration":1}}]},"7c1c8c6318c554c86b695deacecf1854":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5496efe2fd3e353","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0}},{"uid":"965bac5a2c55f031","status":"passed","time":{"start":1732764220989,"stop":1732764220989,"duration":0}},{"uid":"73f30fbb9798a5d5","status":"passed","time":{"start":1732428196208,"stop":1732428196209,"duration":1}},{"uid":"d1a80d9f422182d","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"a2776f2124bd86f4","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"3a0022f9e1e56fec3d9bba2b7b27d486":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3707f05ce7b52058","status":"passed","time":{"start":1596047923888,"stop":1596047923890,"duration":2}},{"uid":"36748e65bdf61ed8","status":"passed","time":{"start":1596005123920,"stop":1596005123921,"duration":1}},{"uid":"8a04fc81c9c71515","status":"passed","time":{"start":1594531288820,"stop":1594531288822,"duration":2}},{"uid":"4c7d8f554bf4a426","status":"passed","time":{"start":1594163434289,"stop":1594163434291,"duration":2}},{"uid":"4f2f66d8ffe3d17e","status":"passed","time":{"start":1594163040705,"stop":1594163040707,"duration":2}}]},"a509e3c0ca4051c43628b1084be46cd0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"102dd06132e50a69","status":"passed","time":{"start":1596047924184,"stop":1596047924185,"duration":1}},{"uid":"969f4bc7638ab01","status":"passed","time":{"start":1596005124285,"stop":1596005124285,"duration":0}},{"uid":"3286a5532b39c020","status":"passed","time":{"start":1594531289121,"stop":1594531289121,"duration":0}},{"uid":"f665e521010427be","status":"passed","time":{"start":1594163434624,"stop":1594163434624,"duration":0}},{"uid":"f5299daae62ca364","status":"passed","time":{"start":1594163041010,"stop":1594163041011,"duration":1}}]},"9fee131d815f560a33f2993b7a094489":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"72c2edc2055d0da7","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0}},{"uid":"ef2b00c02db84592","status":"passed","time":{"start":1732764219186,"stop":1732764219186,"duration":0}},{"uid":"607f84fe70696eb5","status":"passed","time":{"start":1732428194512,"stop":1732428194512,"duration":0}},{"uid":"2965d2d3db0ea08e","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"be5a8376fdcba717","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"ecc1f7419b2f77621f5c909f1d0df9a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1cc5ce778c99d98","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0}},{"uid":"c8a70d9350601da5","status":"passed","time":{"start":1732764221235,"stop":1732764221235,"duration":0}},{"uid":"98c161ccba9924bd","status":"passed","time":{"start":1732428196385,"stop":1732428196385,"duration":0}},{"uid":"9525e56c1666fc0f","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"de3c176bdacd6cb0","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"2ab55d25b4f71b0a35e531ab6cae710e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e7ac97a954c5e722","status":"passed","time":{"start":1733030100497,"stop":1733030100497,"duration":0}},{"uid":"8e87cfc15c8260a3","status":"passed","time":{"start":1732764220528,"stop":1732764220529,"duration":1}},{"uid":"21f08ae936e1de27","status":"passed","time":{"start":1732428195838,"stop":1732428195839,"duration":1}},{"uid":"b1c2f2381b1441f6","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}},{"uid":"204a2114486cc2f9","status":"passed","time":{"start":1724735129117,"stop":1724735129117,"duration":0}}]},"7732bdc5c8a12e91b22a2477eebb13bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":6,"unknown":0,"total":6},"items":[{"uid":"8dc143e390931cc3","status":"passed","time":{"start":1596047920003,"stop":1596047920224,"duration":221}},{"uid":"7856b8751b472e6a","status":"passed","time":{"start":1596005119952,"stop":1596005120131,"duration":179}},{"uid":"19f2ba140f2437ae","status":"passed","time":{"start":1594531284873,"stop":1594531285093,"duration":220}},{"uid":"4f2c07b07cf9f421","status":"passed","time":{"start":1594163430378,"stop":1594163430587,"duration":209}},{"uid":"53b8c0131b3b3490","status":"passed","time":{"start":1594163036601,"stop":1594163036803,"duration":202}}]},"05d3d7ae3b11057af82404f162aa30df":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"101b76d3a18bb4c3","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0}},{"uid":"4d8c29fe45d13f2d","status":"passed","time":{"start":1732764220346,"stop":1732764220346,"duration":0}},{"uid":"bcc8c6b28fb32dd0","status":"passed","time":{"start":1732428195666,"stop":1732428195666,"duration":0}},{"uid":"704aacac2db91585","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"469371686ca36a1e","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"c5fd0529c8efb80c665151c8fe4db950":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dd485df44deac579","status":"passed","time":{"start":1596047919638,"stop":1596047919640,"duration":2}},{"uid":"94eb7c5df2ab243c","status":"passed","time":{"start":1596005119617,"stop":1596005119617,"duration":0}},{"uid":"936ceda4816c252c","status":"passed","time":{"start":1594531284519,"stop":1594531284520,"duration":1}},{"uid":"1331fbc766a5d0da","status":"passed","time":{"start":1594163430062,"stop":1594163430063,"duration":1}},{"uid":"7fac570d333c8799","status":"passed","time":{"start":1594163036280,"stop":1594163036281,"duration":1}}]},"4ead7e0fcfcb5e2314fc6a89a93e9734":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fbda7cc90bd0bf8e","status":"passed","time":{"start":1596047924351,"stop":1596047924353,"duration":2}},{"uid":"be8a17da662ef6fa","status":"passed","time":{"start":1596005124455,"stop":1596005124456,"duration":1}},{"uid":"5459c453ab68544f","status":"passed","time":{"start":1594531289294,"stop":1594531289295,"duration":1}},{"uid":"45d0744cd9f6c67f","status":"passed","time":{"start":1594163434775,"stop":1594163434776,"duration":1}},{"uid":"651a68767b0788de","status":"passed","time":{"start":1594163041164,"stop":1594163041165,"duration":1}}]},"fc1061f17dd61adf726ad7c2bb23539c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"690df5b9e2e97d3","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0}},{"uid":"c3e9cf6e477b7f80","status":"passed","time":{"start":1732764220749,"stop":1732764220749,"duration":0}},{"uid":"93ceeb95a47fabbf","status":"passed","time":{"start":1732428196029,"stop":1732428196030,"duration":1}},{"uid":"39c69409f76377e7","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}},{"uid":"a14fdddc74cd287e","status":"passed","time":{"start":1724735129321,"stop":1724735129321,"duration":0}}]},"3249b5db727c0aadecf3cb62b280e675":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7aa3fbfc8218c54e","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0}},{"uid":"43a8b37a1715c915","status":"passed","time":{"start":1732764218582,"stop":1732764218583,"duration":1}},{"uid":"8dde6031964dc28f","status":"passed","time":{"start":1732428193941,"stop":1732428193942,"duration":1}},{"uid":"b1d54b76165521a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"164087ecc666d9a0","status":"passed","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"d2c9cdacf9fca346eec2858cd44275e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5ac65e8dc17d86a","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0}},{"uid":"388d9dc9fa1f1c3a","status":"passed","time":{"start":1732764221087,"stop":1732764221087,"duration":0}},{"uid":"5a2ae93193e5280a","status":"passed","time":{"start":1732428196278,"stop":1732428196278,"duration":0}},{"uid":"71d876f4d19ecd67","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}},{"uid":"3151ebffdc64c952","status":"passed","time":{"start":1724735129555,"stop":1724735129570,"duration":15}}]},"c387db789a67b80c29f3c3ba2e6c9bce":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d0b6dccad411741e","status":"passed","time":{"start":1733030100184,"stop":1733030100184,"duration":0}},{"uid":"41668c3c4e1a677a","status":"passed","time":{"start":1732764220213,"stop":1732764220213,"duration":0}},{"uid":"af82a0c3b0cef265","status":"passed","time":{"start":1732428195530,"stop":1732428195531,"duration":1}},{"uid":"84f17449b7b13451","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"324c41918ed3c26a","status":"passed","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"59de8dec543be1db3938897a3c9169de":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f39847014d01db85","status":"passed","time":{"start":1733030099021,"stop":1733030099161,"duration":140}},{"uid":"b7dd8f8438e567a9","status":"passed","time":{"start":1732764218953,"stop":1732764219098,"duration":145}},{"uid":"7560669431ea4aa8","status":"passed","time":{"start":1732428194292,"stop":1732428194424,"duration":132}},{"uid":"7fd5632b0213855d","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}},{"uid":"60f5877935ced5c5","status":"passed","time":{"start":1724735127688,"stop":1724735127813,"duration":125}}]},"3535b5d3361369c2593c9d89ae1cea1a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6554b0fd80e34f57","status":"passed","time":{"start":1596047923924,"stop":1596047923929,"duration":5}},{"uid":"e69af86f54c7868c","status":"passed","time":{"start":1596005123970,"stop":1596005123973,"duration":3}},{"uid":"bacecbd86edd2bf0","status":"passed","time":{"start":1594531288858,"stop":1594531288859,"duration":1}},{"uid":"8d0dd3ee10bf22df","status":"passed","time":{"start":1594163434341,"stop":1594163434343,"duration":2}},{"uid":"44c4d2ac11e141a4","status":"passed","time":{"start":1594163040743,"stop":1594163040745,"duration":2}}]},"533d438d8a468bebefb4d5ec0ab2129d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9f8e30dc708eeb","status":"passed","time":{"start":1596047924494,"stop":1596047924495,"duration":1}},{"uid":"33c3d515cc3533ef","status":"passed","time":{"start":1596005124596,"stop":1596005124597,"duration":1}},{"uid":"90027bd4f3079ed1","status":"passed","time":{"start":1594531289465,"stop":1594531289467,"duration":2}},{"uid":"14a73be41002f794","status":"passed","time":{"start":1594163434913,"stop":1594163434914,"duration":1}},{"uid":"ba9a6e2c1a64799c","status":"passed","time":{"start":1594163041302,"stop":1594163041303,"duration":1}}]},"8de0f2f9cbc9fd26d52a18adb21715cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":13,"unknown":0,"total":13},"items":[{"uid":"706a337230dfa133","status":"passed","time":{"start":1596047920580,"stop":1596047920582,"duration":2}},{"uid":"762f8df9632f387f","status":"passed","time":{"start":1596005120477,"stop":1596005120479,"duration":2}},{"uid":"4046a5bcf1bd862c","status":"passed","time":{"start":1594531285418,"stop":1594531285420,"duration":2}},{"uid":"206ba31b5ce3c0b9","status":"passed","time":{"start":1594163430880,"stop":1594163430883,"duration":3}},{"uid":"5ceaa41dcc6b2453","status":"passed","time":{"start":1594163037121,"stop":1594163037123,"duration":2}}]},"e3d629a995491cb3a3079998a04583ff":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e96aee50481acdd6","status":"passed","time":{"start":1733030101054,"stop":1733030101070,"duration":16}},{"uid":"66020f911b054e74","status":"passed","time":{"start":1732764221218,"stop":1732764221218,"duration":0}},{"uid":"ac8683bc2703e398","status":"passed","time":{"start":1732428196369,"stop":1732428196369,"duration":0}},{"uid":"2acb560e089cb7c8","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"b843b5b7994550ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"b2b12ad2385368d21ad81dc66e7b08ab":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"3a2742b86cdf4969","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919084,"stop":1596047919084,"duration":0}},{"uid":"8d42dc79d020ca33","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119147,"stop":1596005119147,"duration":0}},{"uid":"156d58f373c128f7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284042,"stop":1594531284042,"duration":0}},{"uid":"4065714818e524e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429612,"stop":1594163429612,"duration":0}},{"uid":"d107062de6c23913","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035774,"stop":1594163035774,"duration":0}}]},"fd37424f9957f0d1afe768cce5a8cc08":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d518579b8137712e","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0}},{"uid":"4c5cc35d3de0d6f4","status":"passed","time":{"start":1732764221298,"stop":1732764221298,"duration":0}},{"uid":"d04b40a520c97bdd","status":"passed","time":{"start":1732428196435,"stop":1732428196436,"duration":1}},{"uid":"92297f3cbdd8ad78","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}},{"uid":"70e9bff1f7e13160","status":"passed","time":{"start":1724735129727,"stop":1724735129727,"duration":0}}]},"1051a395d8289668fbb59ee9de3c3a4f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8eb80b15a6d6b848","status":"passed","time":{"start":1733030099161,"stop":1733030099177,"duration":16}},{"uid":"142f5165c8452d36","status":"passed","time":{"start":1732764219120,"stop":1732764219120,"duration":0}},{"uid":"1b6b658aae9aa73c","status":"passed","time":{"start":1732428194447,"stop":1732428194447,"duration":0}},{"uid":"ed30e8563a89229a","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}},{"uid":"2f09ef1a750aec43","status":"passed","time":{"start":1724735127828,"stop":1724735127844,"duration":16}}]},"e3b42ce7d56f4739019f8eb0baf01610":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e5cd64cfdc76a8e9","status":"passed","time":{"start":1596047924578,"stop":1596047924579,"duration":1}},{"uid":"49247b03e13673b2","status":"passed","time":{"start":1596005124689,"stop":1596005124689,"duration":0}},{"uid":"c8961ed572428fae","status":"passed","time":{"start":1594531289572,"stop":1594531289573,"duration":1}},{"uid":"d218a6650a6ff33b","status":"passed","time":{"start":1594163435000,"stop":1594163435001,"duration":1}},{"uid":"d235675b8728288e","status":"passed","time":{"start":1594163041399,"stop":1594163041400,"duration":1}}]},"77c7125894dc4635fdd1db51405959d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c50649c997228fe6","status":"passed","time":{"start":1733030101070,"stop":1733030101070,"duration":0}},{"uid":"3846518071a02e50","status":"passed","time":{"start":1732764221226,"stop":1732764221226,"duration":0}},{"uid":"5b15d7c039eaff13","status":"passed","time":{"start":1732428196377,"stop":1732428196377,"duration":0}},{"uid":"ed5fbc4b14885f68","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}},{"uid":"c08b2480b8f26290","status":"passed","time":{"start":1724735129664,"stop":1724735129664,"duration":0}}]},"29080842d6cf4a4d18869922ebddc40d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f118916485c24d6","status":"passed","time":{"start":1596047920674,"stop":1596047920675,"duration":1}},{"uid":"2493234e74d23534","status":"passed","time":{"start":1596005120564,"stop":1596005120565,"duration":1}},{"uid":"b7e317fc8a443f5a","status":"passed","time":{"start":1594531285494,"stop":1594531285495,"duration":1}},{"uid":"853334812ba3faf8","status":"passed","time":{"start":1594163430979,"stop":1594163430979,"duration":0}},{"uid":"5687ffdf9660a963","status":"passed","time":{"start":1594163037217,"stop":1594163037217,"duration":0}}]},"100f3ec5a4076df24287398b05313e40":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":23,"unknown":0,"total":23},"items":[{"uid":"76b5913eea1a207c","status":"passed","time":{"start":1596047919066,"stop":1596047919069,"duration":3}},{"uid":"703eccc37aa4480a","status":"passed","time":{"start":1596005119127,"stop":1596005119131,"duration":4}},{"uid":"5b733b15ffd4d21b","status":"passed","time":{"start":1594531284026,"stop":1594531284028,"duration":2}},{"uid":"ea891ee495efae08","status":"passed","time":{"start":1594163429598,"stop":1594163429599,"duration":1}},{"uid":"e247bba949d0fae1","status":"passed","time":{"start":1594163035758,"stop":1594163035760,"duration":2}}]},"acc964c78dd821707ef4a0652a683e9a":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"5a5d0954bb249b69","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098708,"stop":1733030098708,"duration":0}},{"uid":"c25f8210fdb51a41","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218647,"stop":1732764218647,"duration":0}},{"uid":"4942ac4be65ef1b0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428193998,"stop":1732428193998,"duration":0}},{"uid":"1319e1ae94efdc02","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}},{"uid":"6fbcaa806475fb37","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127250,"stop":1724735127250,"duration":0}}]},"66b3728fd611f13d7a6d30cfef1eac32":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3c872a9f82c9971c","status":"passed","time":{"start":1596047924267,"stop":1596047924268,"duration":1}},{"uid":"bcde761c499b0acf","status":"passed","time":{"start":1596005124370,"stop":1596005124370,"duration":0}},{"uid":"8ee0d565efe185b5","status":"passed","time":{"start":1594531289198,"stop":1594531289199,"duration":1}},{"uid":"4af38b49485e8e29","status":"passed","time":{"start":1594163434697,"stop":1594163434697,"duration":0}},{"uid":"e911b9f00e76a1ca","status":"passed","time":{"start":1594163041086,"stop":1594163041087,"duration":1}}]},"96cb2196fbafa0a005eea045cb7fef37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c3565c63db8c5cc1","status":"passed","time":{"start":1596047923284,"stop":1596047923285,"duration":1}},{"uid":"c5bb4146e2b5a933","status":"passed","time":{"start":1596005123286,"stop":1596005123288,"duration":2}},{"uid":"5b23a4abf26c143b","status":"passed","time":{"start":1594531288214,"stop":1594531288215,"duration":1}},{"uid":"f29335cd92f2b79b","status":"passed","time":{"start":1594163433741,"stop":1594163433742,"duration":1}},{"uid":"f29ae02ad6796c3f","status":"passed","time":{"start":1594163040213,"stop":1594163040214,"duration":1}}]},"8069a1b5a4342457d2dabf5819382a2e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b4cae88de9afaa55","status":"passed","time":{"start":1733030101039,"stop":1733030101039,"duration":0}},{"uid":"63b822db5bae14d4","status":"passed","time":{"start":1732764221193,"stop":1732764221193,"duration":0}},{"uid":"92a7ecb29f4704b1","status":"passed","time":{"start":1732428196352,"stop":1732428196352,"duration":0}},{"uid":"130e4ffebf4e47af","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}},{"uid":"62692a0c3dd76e6c","status":"passed","time":{"start":1724735129633,"stop":1724735129633,"duration":0}}]},"6f5ecfc36d52495898ac1adb82dbd0a0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"bb5168fb216b99f8","status":"passed","time":{"start":1596047919300,"stop":1596047919302,"duration":2}},{"uid":"eb69633e36cc1956","status":"passed","time":{"start":1596005119316,"stop":1596005119318,"duration":2}},{"uid":"b4ec36f426cb4b58","status":"passed","time":{"start":1594531284206,"stop":1594531284208,"duration":2}},{"uid":"b29b4914b14249c3","status":"passed","time":{"start":1594163429774,"stop":1594163429776,"duration":2}},{"uid":"52715f452ea1fef5","status":"passed","time":{"start":1594163035970,"stop":1594163035971,"duration":1}}]},"acc23f20db867eee3aab4aeb9edba6b9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"bbc7bae406e717fa","status":"passed","time":{"start":1596047923947,"stop":1596047923949,"duration":2}},{"uid":"93ec069bae12949a","status":"passed","time":{"start":1596005124021,"stop":1596005124022,"duration":1}},{"uid":"783d7c9686b2cfc1","status":"passed","time":{"start":1594531288879,"stop":1594531288880,"duration":1}},{"uid":"401ab1a2cf0ba165","status":"passed","time":{"start":1594163434368,"stop":1594163434369,"duration":1}},{"uid":"cfb7a98615bcdc64","status":"passed","time":{"start":1594163040763,"stop":1594163040764,"duration":1}}]},"d2b4dccd0eb8dfd6ef62ac0349f0f6a7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"db9b592f660c3c08","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0}},{"uid":"b36ca0513e4048a8","status":"passed","time":{"start":1732764220234,"stop":1732764220234,"duration":0}},{"uid":"acdec238a53c10e1","status":"passed","time":{"start":1732428195553,"stop":1732428195553,"duration":0}},{"uid":"42383b817b641e4e","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}},{"uid":"89ceeba296a3ea3","status":"passed","time":{"start":1724735128852,"stop":1724735128852,"duration":0}}]},"963bc543b4e4096b877e161985d8949c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5364303890f7a5a1","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0}},{"uid":"3cb7f65d354963ea","status":"passed","time":{"start":1732764221265,"stop":1732764221265,"duration":0}},{"uid":"4045abc0bf075d90","status":"passed","time":{"start":1732428196409,"stop":1732428196409,"duration":0}},{"uid":"54942c51ed88331c","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"f3b283ff21d85aec","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"7a974b0f364ee0a07e53a12f012266eb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f238cb045c94f35e","status":"passed","time":{"start":1596047919979,"stop":1596047919980,"duration":1}},{"uid":"2d90b3c7e3742b06","status":"passed","time":{"start":1596005119933,"stop":1596005119934,"duration":1}},{"uid":"ef32885d281df3d2","status":"passed","time":{"start":1594531284847,"stop":1594531284848,"duration":1}},{"uid":"8b5e3b5a0b7b5d2b","status":"passed","time":{"start":1594163430360,"stop":1594163430361,"duration":1}},{"uid":"a1b80a7fc2e2720e","status":"passed","time":{"start":1594163036582,"stop":1594163036584,"duration":2}}]},"496d33fa6a1e979e0779d14eb86faf0f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"40a1d8afe1f8a763","status":"passed","time":{"start":1596047924424,"stop":1596047924424,"duration":0}},{"uid":"3e996c056f691154","status":"passed","time":{"start":1596005124526,"stop":1596005124527,"duration":1}},{"uid":"153b7f803985616b","status":"passed","time":{"start":1594531289372,"stop":1594531289373,"duration":1}},{"uid":"b28ac60f6f72115d","status":"passed","time":{"start":1594163434842,"stop":1594163434843,"duration":1}},{"uid":"659230b41107ed67","status":"passed","time":{"start":1594163041233,"stop":1594163041233,"duration":0}}]},"0e18519ae24fd5fc6878157b597bcdf8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7c86f57dd40dd0c","status":"passed","time":{"start":1596047923374,"stop":1596047923379,"duration":5}},{"uid":"b9ab24ddee75278b","status":"passed","time":{"start":1596005123383,"stop":1596005123385,"duration":2}},{"uid":"ab9e385637c61919","status":"passed","time":{"start":1594531288315,"stop":1594531288316,"duration":1}},{"uid":"51134fe3ab27bbb7","status":"passed","time":{"start":1594163433812,"stop":1594163433813,"duration":1}},{"uid":"7c340c23c00d20d4","status":"passed","time":{"start":1594163040296,"stop":1594163040298,"duration":2}}]},"3086879b276d25b4dd0f45ada5d9f20b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"52e55a2445119fdd","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0}},{"uid":"c5bce40c2868c787","status":"passed","time":{"start":1732764220328,"stop":1732764220328,"duration":0}},{"uid":"2e46c970e553e301","status":"passed","time":{"start":1732428195651,"stop":1732428195651,"duration":0}},{"uid":"9e5b993187ac8b27","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}},{"uid":"c0ff31e127206139","status":"passed","time":{"start":1724735128930,"stop":1724735128946,"duration":16}}]},"11acd8f3802b43ce2264b83840d495b4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f83b86d7cbc0ffa1","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0}},{"uid":"89c0be4978ed22ba","status":"passed","time":{"start":1732764220182,"stop":1732764220183,"duration":1}},{"uid":"3eea5577d98c581f","status":"passed","time":{"start":1732428195495,"stop":1732428195495,"duration":0}},{"uid":"b8b1a20b1ac22e64","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"b864bfcb14132f63","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"eb89ee17d2b7a29796b27ce5ba503de6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"69d8ca152b73c452","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0}},{"uid":"86bf8b663d5828a","status":"passed","time":{"start":1732764220494,"stop":1732764220494,"duration":0}},{"uid":"56cce31bdf350ac7","status":"passed","time":{"start":1732428195803,"stop":1732428195803,"duration":0}},{"uid":"1ece392343bb9b12","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"f0c848519588d2dc","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"4171a558a2bea15b5a0546d36c9a1c63":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"cef1ed2aef537de7","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0}},{"uid":"405b625cf95f9fbd","status":"passed","time":{"start":1732764220459,"stop":1732764220459,"duration":0}},{"uid":"900a2cbb7155295","status":"passed","time":{"start":1732428195767,"stop":1732428195767,"duration":0}},{"uid":"fdff4b964fae0427","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"f1c4cfcd59974ea","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"3a2cad5dab684132d1f8974f9a6b5c75":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"e4473b95f40f5c92","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0}},{"uid":"1bf4128bcf35143f","status":"passed","time":{"start":1732764220563,"stop":1732764220563,"duration":0}},{"uid":"47cc31f6ebf12c13","status":"passed","time":{"start":1732428195869,"stop":1732428195869,"duration":0}},{"uid":"a60fe7d0456e1873","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"3cad1df85b3a49c","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"48fdcdea5c8db828f662f95e3fb16639":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5f1b4341a99a98a","status":"passed","time":{"start":1596047923820,"stop":1596047923821,"duration":1}},{"uid":"82cbe8c5232c3097","status":"passed","time":{"start":1596005123849,"stop":1596005123851,"duration":2}},{"uid":"9cbb0fc5b77d3e3b","status":"passed","time":{"start":1594531288763,"stop":1594531288764,"duration":1}},{"uid":"3d07e771e31e0282","status":"passed","time":{"start":1594163434221,"stop":1594163434223,"duration":2}},{"uid":"dcce21d1395e16c2","status":"passed","time":{"start":1594163040652,"stop":1594163040653,"duration":1}}]},"a84f9ba6c41cb4d0c2f13ab2b6e69db4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"791f21c32f977f8","status":"passed","time":{"start":1596047923967,"stop":1596047923968,"duration":1}},{"uid":"807ae8688e6e410b","status":"passed","time":{"start":1596005124047,"stop":1596005124048,"duration":1}},{"uid":"b14a2aec4a7f6313","status":"passed","time":{"start":1594531288902,"stop":1594531288903,"duration":1}},{"uid":"64704897599f7eb5","status":"passed","time":{"start":1594163434393,"stop":1594163434394,"duration":1}},{"uid":"5af04030c9083062","status":"passed","time":{"start":1594163040783,"stop":1594163040784,"duration":1}}]},"e05344702d3401dd896d4214550f8b4c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2aa41c52e02e83e6","status":"passed","time":{"start":1596047920473,"stop":1596047920475,"duration":2}},{"uid":"c96c3300d62ce238","status":"passed","time":{"start":1596005120373,"stop":1596005120375,"duration":2}},{"uid":"7f326ceed0ebd8c2","status":"passed","time":{"start":1594531285308,"stop":1594531285310,"duration":2}},{"uid":"e5757b6da7debed7","status":"passed","time":{"start":1594163430774,"stop":1594163430775,"duration":1}},{"uid":"ed254757a9ef4678","status":"passed","time":{"start":1594163037017,"stop":1594163037019,"duration":2}}]},"6daadee7d5a71dbe5d0aac732dc95010":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"4b95b2f07d416f82","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919534,"stop":1596047919534,"duration":0}},{"uid":"e5cedb548c17dbc6","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119541,"stop":1596005119541,"duration":0}},{"uid":"6fe20d26818b8ba1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284441,"stop":1594531284441,"duration":0}},{"uid":"6025595b20002dc8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429991,"stop":1594163429991,"duration":0}},{"uid":"7fafe229d76b3100","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036202,"stop":1594163036202,"duration":0}}]},"613947cd597dffbd20e045894441141e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c78804d71d8959","status":"passed","time":{"start":1596047924416,"stop":1596047924416,"duration":0}},{"uid":"8429852f2cfb59f","status":"passed","time":{"start":1596005124517,"stop":1596005124518,"duration":1}},{"uid":"7327aae01ec01c74","status":"passed","time":{"start":1594531289360,"stop":1594531289361,"duration":1}},{"uid":"30146c8bb0795b74","status":"passed","time":{"start":1594163434835,"stop":1594163434835,"duration":0}},{"uid":"186e3504011f1ddb","status":"passed","time":{"start":1594163041224,"stop":1594163041225,"duration":1}}]},"439816a19ff5fc7179df296b3e238bad":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"32eaf956310a89b7","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0}},{"uid":"7e066328cfed2428","status":"passed","time":{"start":1732764220670,"stop":1732764220670,"duration":0}},{"uid":"b03752c3145720e6","status":"passed","time":{"start":1732428195961,"stop":1732428195961,"duration":0}},{"uid":"2d35bd18d5e6ee6b","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}},{"uid":"6c5d99461aa2603","status":"passed","time":{"start":1724735129242,"stop":1724735129242,"duration":0}}]},"ae9d861fd855b26fd2ffe303ebf8c238":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2a6bb93adc2b9500","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0}},{"uid":"b8a2da685a579f99","status":"passed","time":{"start":1732764221126,"stop":1732764221126,"duration":0}},{"uid":"368118acc0dadb7d","status":"passed","time":{"start":1732428196306,"stop":1732428196307,"duration":1}},{"uid":"4fb2a019463cdbdf","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}},{"uid":"cee46a1116cde2e1","status":"passed","time":{"start":1724735129586,"stop":1724735129586,"duration":0}}]},"2af6aa545c98eb65f8404392b6468813":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2a3aa78afffa487b","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0}},{"uid":"52402d5056a00e1d","status":"passed","time":{"start":1732764221212,"stop":1732764221213,"duration":1}},{"uid":"b9b6a14fc4bd1dd7","status":"passed","time":{"start":1732428196364,"stop":1732428196364,"duration":0}},{"uid":"56a28cc490d83b65","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"f1acd3007b7873ed","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"245809d83d6201b756f2d220be6127e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"104119dea7614dae","status":"passed","time":{"start":1596047924620,"stop":1596047924620,"duration":0}},{"uid":"20148c0e39519534","status":"passed","time":{"start":1596005124734,"stop":1596005124735,"duration":1}},{"uid":"1dd968d4aec20037","status":"passed","time":{"start":1594531289621,"stop":1594531289622,"duration":1}},{"uid":"d2bb7a8bbe5eb188","status":"passed","time":{"start":1594163435040,"stop":1594163435041,"duration":1}},{"uid":"6c08043f492878cb","status":"passed","time":{"start":1594163041451,"stop":1594163041452,"duration":1}}]},"4482f1de7682fdd9affc3f0318780098":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d44254868b620b1","status":"passed","time":{"start":1596047924283,"stop":1596047924284,"duration":1}},{"uid":"90499df4f267592f","status":"passed","time":{"start":1596005124388,"stop":1596005124389,"duration":1}},{"uid":"96b171c3f7aec169","status":"passed","time":{"start":1594531289221,"stop":1594531289222,"duration":1}},{"uid":"1087b5d634273e54","status":"passed","time":{"start":1594163434713,"stop":1594163434714,"duration":1}},{"uid":"b28330f9316d8a25","status":"passed","time":{"start":1594163041103,"stop":1594163041104,"duration":1}}]},"7af7e9479cf2a47a636ae35231bacc9f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8c4575be21ff0ded","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0}},{"uid":"3d05de3d43cf437d","status":"passed","time":{"start":1732764218790,"stop":1732764218791,"duration":1}},{"uid":"751027d0ac0cc021","status":"passed","time":{"start":1732428194141,"stop":1732428194141,"duration":0}},{"uid":"37b95a78feb35857","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}},{"uid":"bc3230f80ad8864d","status":"passed","time":{"start":1724735127407,"stop":1724735127422,"duration":15}}]},"334b612b45e8a87e83a3482704f4ba8a":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"e08a8a15da9b3ad","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030099161,"stop":1733030099161,"duration":0}},{"uid":"6ef44675aea47099","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764219113,"stop":1732764219113,"duration":0}},{"uid":"70eff3ae24ccc67a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194439,"stop":1732428194439,"duration":0}},{"uid":"84fd4c67efee5295","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}},{"uid":"62bf772c3a2aa5d2","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127828,"stop":1724735127828,"duration":0}}]},"8a320800b2086203174291b36ca9f131":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"572ec2fa6216ef7f","status":"passed","time":{"start":1596047919050,"stop":1596047919054,"duration":4}},{"uid":"616e8aa60b392b88","status":"passed","time":{"start":1596005119093,"stop":1596005119096,"duration":3}}]},"efddacca930076c1013b396c6bf9ad2b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1d49801d4e6b4921","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0}},{"uid":"5e2354482de170d3","status":"passed","time":{"start":1732764218633,"stop":1732764218633,"duration":0}},{"uid":"3e8741eae0b44214","status":"passed","time":{"start":1732428193982,"stop":1732428193982,"duration":0}},{"uid":"7b2352a8e3675c67","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}},{"uid":"db7b4c897ddcf1a6","status":"passed","time":{"start":1724735127235,"stop":1724735127235,"duration":0}}]},"aaef6593296fd19246b6caa71f38ecab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"49244d740987433","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0}},{"uid":"3ff87d981594c6f7","status":"passed","time":{"start":1732764220596,"stop":1732764220597,"duration":1}},{"uid":"5ce6881896e2614d","status":"passed","time":{"start":1732428195897,"stop":1732428195897,"duration":0}},{"uid":"9519f48ec729ba4c","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}},{"uid":"aee4538f6230f980","status":"passed","time":{"start":1724735129180,"stop":1724735129180,"duration":0}}]},"314fa0c911eecc8550b44d846452396a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dbc0e90eb4b59964","status":"passed","time":{"start":1596047923398,"stop":1596047923399,"duration":1}},{"uid":"2a372198588763ac","status":"passed","time":{"start":1596005123398,"stop":1596005123400,"duration":2}},{"uid":"4d844f8568dbe3ee","status":"passed","time":{"start":1594531288328,"stop":1594531288329,"duration":1}},{"uid":"40024d36cd6a9b14","status":"passed","time":{"start":1594163433823,"stop":1594163433824,"duration":1}},{"uid":"ba3afb6612af0b85","status":"passed","time":{"start":1594163040307,"stop":1594163040308,"duration":1}}]},"489e3070dc83756c411301400dd6e3c8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"823dff07664aaa4","status":"passed","time":{"start":1733030100664,"stop":1733030100664,"duration":0}},{"uid":"631ed8ca3aead56c","status":"passed","time":{"start":1732764220715,"stop":1732764220719,"duration":4}},{"uid":"6660f839d8534ee2","status":"passed","time":{"start":1732428195998,"stop":1732428195998,"duration":0}},{"uid":"4ecd1e835300dbcf","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}},{"uid":"dfb4af6de633e98","status":"passed","time":{"start":1724735129289,"stop":1724735129289,"duration":0}}]},"0b32c15001d0d63b38660da738a14f27":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":11,"unknown":0,"total":11},"items":[{"uid":"4f042f8b1ea82898","status":"passed","time":{"start":1596047923512,"stop":1596047923514,"duration":2}},{"uid":"83de0438b86a3482","status":"passed","time":{"start":1596005123530,"stop":1596005123531,"duration":1}},{"uid":"bf7ae8aec398e92a","status":"passed","time":{"start":1594531288443,"stop":1594531288445,"duration":2}},{"uid":"e0c7f6610e5b66fd","status":"passed","time":{"start":1594163433907,"stop":1594163433908,"duration":1}},{"uid":"ac9bcc6689e72b84","status":"passed","time":{"start":1594163040396,"stop":1594163040398,"duration":2}}]},"c44d6aae77aa205665511a5ebd2959de":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"45ada06dcb0e9f0a","status":"passed","time":{"start":1596047920631,"stop":1596047920632,"duration":1}},{"uid":"8d0ef96cb00535e2","status":"passed","time":{"start":1596005120516,"stop":1596005120519,"duration":3}},{"uid":"933f81762d8af8fe","status":"passed","time":{"start":1594531285451,"stop":1594531285452,"duration":1}},{"uid":"671372ae37f34d63","status":"passed","time":{"start":1594163430925,"stop":1594163430927,"duration":2}},{"uid":"982672c4ebddedc8","status":"passed","time":{"start":1594163037171,"stop":1594163037172,"duration":1}}]},"d8ed55046475c7e2ae8edf6bff7b1316":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"af3a43fc31649664","status":"passed","time":{"start":1733030098771,"stop":1733030098849,"duration":78}},{"uid":"7331de8e7202ad57","status":"passed","time":{"start":1732764218698,"stop":1732764218753,"duration":55}},{"uid":"aa08a95162404297","status":"passed","time":{"start":1732428194048,"stop":1732428194108,"duration":60}},{"uid":"82619e3fb0e84d4d","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}},{"uid":"521b14729542d5c4","status":"passed","time":{"start":1724735127313,"stop":1724735127391,"duration":78}}]},"dc079813fc553d210a3def6568230a25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"506e0ee504d23a05","status":"passed","time":{"start":1733030098958,"stop":1733030098989,"duration":31}},{"uid":"b684b0c7250ecf6d","status":"passed","time":{"start":1732764218894,"stop":1732764218908,"duration":14}},{"uid":"f727d28e098b30b7","status":"passed","time":{"start":1732428194244,"stop":1732428194248,"duration":4}},{"uid":"9cb8749ab5d5d5c7","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}},{"uid":"2ed8dfd7ca5a3d13","status":"passed","time":{"start":1724735127531,"stop":1724735127656,"duration":125}}]},"aa9027133335818366e5c0c91c936279":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"456a7345e9aeb905","status":"passed","time":{"start":1733030101023,"stop":1733030101023,"duration":0}},{"uid":"edb8f84ee9c3dd36","status":"passed","time":{"start":1732764221159,"stop":1732764221159,"duration":0}},{"uid":"284ee1b80abfdb89","status":"passed","time":{"start":1732428196328,"stop":1732428196328,"duration":0}},{"uid":"1efaf2ab015adde4","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}},{"uid":"6af8370630444180","status":"passed","time":{"start":1724735129617,"stop":1724735129617,"duration":0}}]},"7fcdfe6224a9c1bf62e1c03968cb029e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d9d827d0af3ba710","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0}},{"uid":"b1056dd0bc1f2f4e","status":"passed","time":{"start":1732764220467,"stop":1732764220468,"duration":1}},{"uid":"de0aa71757f8badf","status":"passed","time":{"start":1732428195776,"stop":1732428195776,"duration":0}},{"uid":"5a941d3b90762a67","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}},{"uid":"5ef0ca25b0e8e9c5","status":"passed","time":{"start":1724735129055,"stop":1724735129055,"duration":0}}]},"0a8e4dfe9eaf7b2cb8926113088e5d0a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"b43c16d06b3f5808","status":"passed","time":{"start":1596047924196,"stop":1596047924197,"duration":1}},{"uid":"3fc3fc4f42d1272b","status":"passed","time":{"start":1596005124299,"stop":1596005124300,"duration":1}},{"uid":"e4d6d5c0c01b7e82","status":"passed","time":{"start":1594531289130,"stop":1594531289131,"duration":1}},{"uid":"c97d4431cefe2d16","status":"passed","time":{"start":1594163434633,"stop":1594163434634,"duration":1}},{"uid":"30b331f3adf439b0","status":"passed","time":{"start":1594163041021,"stop":1594163041022,"duration":1}}]},"52e12c4648d8f4cf01926e8778370133":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"41cba8aef9bbe904","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047923345,"stop":1596047923345,"duration":0}},{"uid":"5650c62a08c1f6cd","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005123353,"stop":1596005123353,"duration":0}},{"uid":"739a912f797e0e0f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531288265,"stop":1594531288265,"duration":0}},{"uid":"4c4358080d3078b1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163433789,"stop":1594163433789,"duration":0}},{"uid":"4e4137053ca560a7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163040268,"stop":1594163040268,"duration":0}}]},"9398abf0c9f75b70331fc87dcc2b8a7f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"cd56af2e749c4e8a","status":"passed","time":{"start":1733030100711,"stop":1733030100711,"duration":0}},{"uid":"a3cba1eb012d0834","status":"passed","time":{"start":1732764220770,"stop":1732764220770,"duration":0}},{"uid":"27f5e11d20d2d96c","status":"passed","time":{"start":1732428196044,"stop":1732428196044,"duration":0}},{"uid":"8a0dfae45b96d6a4","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}},{"uid":"c7f51c235702ff2b","status":"passed","time":{"start":1724735129336,"stop":1724735129336,"duration":0}}]},"05bf5c98a76bc70a52e8a5ca13268eab":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5951612733ac0cb9","status":"passed","time":{"start":1596047924556,"stop":1596047924556,"duration":0}},{"uid":"f21937cfbbaae25","status":"passed","time":{"start":1596005124660,"stop":1596005124663,"duration":3}},{"uid":"5d58b1a7218109b5","status":"passed","time":{"start":1594531289543,"stop":1594531289544,"duration":1}},{"uid":"671f6a4d68ab0df2","status":"passed","time":{"start":1594163434975,"stop":1594163434976,"duration":1}},{"uid":"7353760a04f5d0d1","status":"passed","time":{"start":1594163041373,"stop":1594163041374,"duration":1}}]},"86179f9249a59de428ee775697f09532":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2a7d968ac3eed20b","status":"passed","time":{"start":1596047923796,"stop":1596047923797,"duration":1}},{"uid":"968dd33eab30cf89","status":"passed","time":{"start":1596005123828,"stop":1596005123829,"duration":1}},{"uid":"76a1aaf0a3f58f4d","status":"passed","time":{"start":1594531288741,"stop":1594531288742,"duration":1}},{"uid":"7c0c70247f667c0","status":"passed","time":{"start":1594163434201,"stop":1594163434202,"duration":1}},{"uid":"a8acd0468acfc37a","status":"passed","time":{"start":1594163040633,"stop":1594163040634,"duration":1}}]},"1b4dd61e36f8ec4ee2f83635d4e16e21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a95c24b51d5c9432","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0}},{"uid":"cc4dd11ea285cd92","status":"passed","time":{"start":1732764220907,"stop":1732764220907,"duration":0}},{"uid":"35f08e300f5635d6","status":"passed","time":{"start":1732428196147,"stop":1732428196148,"duration":1}},{"uid":"504baf7c4d256536","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"c462a5b80d49c98b","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"cafc6fc0abfb11e9cfca8d11aa0fa441":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ed784be3e1822657","status":"passed","time":{"start":1596047924475,"stop":1596047924479,"duration":4}},{"uid":"8bccd3aa4e3f8054","status":"passed","time":{"start":1596005124583,"stop":1596005124584,"duration":1}},{"uid":"6d1cb4b174edb98f","status":"passed","time":{"start":1594531289445,"stop":1594531289446,"duration":1}},{"uid":"5ea24fe45dd3e1e9","status":"passed","time":{"start":1594163434899,"stop":1594163434900,"duration":1}},{"uid":"d96c17c5a0753288","status":"passed","time":{"start":1594163041289,"stop":1594163041290,"duration":1}}]},"ef9f0d6b554a403890075cafa527f60a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ffb8e8f4eed50d14","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0}},{"uid":"3de5bbe9e7cab5b6","status":"passed","time":{"start":1732764221024,"stop":1732764221024,"duration":0}},{"uid":"2951c359ba3fd421","status":"passed","time":{"start":1732428196238,"stop":1732428196239,"duration":1}},{"uid":"972d0622d29729c4","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"2c2a3e42bb3933c8","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"d497c596f93571336a07dc34f8bfbb15":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ccd7de56a4099f36","status":"passed","time":{"start":1596047920326,"stop":1596047920329,"duration":3}},{"uid":"239bd4b3a01bc27d","status":"passed","time":{"start":1596005120225,"stop":1596005120226,"duration":1}},{"uid":"3f52e197b202f8ac","status":"passed","time":{"start":1594531285193,"stop":1594531285196,"duration":3}},{"uid":"ffe2375a75a66e62","status":"passed","time":{"start":1594163430669,"stop":1594163430671,"duration":2}},{"uid":"e525cd6e49d06aa3","status":"passed","time":{"start":1594163036892,"stop":1594163036894,"duration":2}}]},"42b548c0db1df4ee811cd611dd0f3fb5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f272a61ddd3e6c22","status":"passed","time":{"start":1596047923420,"stop":1596047923422,"duration":2}},{"uid":"fe099401a3554dbb","status":"passed","time":{"start":1596005123416,"stop":1596005123417,"duration":1}},{"uid":"ae3562fc0808791d","status":"passed","time":{"start":1594531288343,"stop":1594531288344,"duration":1}},{"uid":"787b50b67714584a","status":"passed","time":{"start":1594163433837,"stop":1594163433839,"duration":2}},{"uid":"cc9da8d77d6e39cf","status":"passed","time":{"start":1594163040320,"stop":1594163040322,"duration":2}}]},"ae3e8fd54712dd8496499b7bc14e7226":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"afa4196b56245753","status":"passed","time":{"start":1733030099349,"stop":1733030099349,"duration":0}},{"uid":"37bcd45d30c593a7","status":"passed","time":{"start":1732764219315,"stop":1732764219315,"duration":0}},{"uid":"d4a0809a7647965","status":"passed","time":{"start":1732428194637,"stop":1732428194637,"duration":0}},{"uid":"3a2392b112899a67","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}},{"uid":"682a94239c4fcbde","status":"passed","time":{"start":1724735128031,"stop":1724735128031,"duration":0}}]},"7d6726eaa46b88e072d1737308714f4e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e5a675ad44e68491","status":"passed","time":{"start":1596047920309,"stop":1596047920310,"duration":1}},{"uid":"e479f3c1d382a28c","status":"passed","time":{"start":1596005120198,"stop":1596005120200,"duration":2}},{"uid":"c0b164673bf3c82b","status":"passed","time":{"start":1594531285169,"stop":1594531285170,"duration":1}},{"uid":"68ec38806a2cd925","status":"passed","time":{"start":1594163430649,"stop":1594163430650,"duration":1}},{"uid":"9f994ed97de7687b","status":"passed","time":{"start":1594163036873,"stop":1594163036874,"duration":1}}]},"fc9a702ca5c19210ede805fc9e7cf90c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3da16b28e7f4cfc7","status":"passed","time":{"start":1596047924046,"stop":1596047924047,"duration":1}},{"uid":"5a652a6c263222b6","status":"passed","time":{"start":1596005124140,"stop":1596005124141,"duration":1}},{"uid":"5b2a78b35171f42d","status":"passed","time":{"start":1594531288986,"stop":1594531288987,"duration":1}},{"uid":"275ecc22360d91d6","status":"passed","time":{"start":1594163434485,"stop":1594163434486,"duration":1}},{"uid":"e8a6bfbb71f53345","status":"passed","time":{"start":1594163040859,"stop":1594163040860,"duration":1}}]},"dcabd02011959f0337d9098678ad990d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9e884f6ea55b7c35","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0}},{"uid":"63ea9545d8dcd43f","status":"passed","time":{"start":1732764221337,"stop":1732764221337,"duration":0}},{"uid":"b1cbd478c753b1e","status":"passed","time":{"start":1732428196468,"stop":1732428196468,"duration":0}},{"uid":"bfe92f9ff640a644","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}},{"uid":"966dbbb37b9c251e","status":"passed","time":{"start":1724735129758,"stop":1724735129758,"duration":0}}]},"80fa996da1344642e95c3c1d2f315df1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"46352cf5111d5c61","status":"passed","time":{"start":1733030101007,"stop":1733030101007,"duration":0}},{"uid":"689b611d3c9a3124","status":"passed","time":{"start":1732764221134,"stop":1732764221134,"duration":0}},{"uid":"bd4541daca134967","status":"passed","time":{"start":1732428196311,"stop":1732428196312,"duration":1}},{"uid":"7ac9af93b3d2f297","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}},{"uid":"3be027c950740ddd","status":"passed","time":{"start":1724735129586,"stop":1724735129602,"duration":16}}]},"161a43e9e1a5a89bd5102282ce0a8c54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":14,"unknown":0,"total":14},"items":[{"uid":"ab747b5869b404ca","status":"passed","time":{"start":1596047919264,"stop":1596047919268,"duration":4}},{"uid":"edb0d9bfe101f9dc","status":"passed","time":{"start":1596005119282,"stop":1596005119285,"duration":3}},{"uid":"2c1d5bfd8e28c76b","status":"passed","time":{"start":1594531284186,"stop":1594531284188,"duration":2}},{"uid":"ff5b0bbf7bff148f","status":"passed","time":{"start":1594163429754,"stop":1594163429755,"duration":1}},{"uid":"99a06d0e6864000b","status":"passed","time":{"start":1594163035939,"stop":1594163035947,"duration":8}}]},"2cb427f82db56166295274f89427b370":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5ffbd011186f0c0b","status":"passed","time":{"start":1596047920657,"stop":1596047920664,"duration":7}},{"uid":"6695f08a3298a6b0","status":"passed","time":{"start":1596005120545,"stop":1596005120552,"duration":7}},{"uid":"38c868d62fad4f75","status":"passed","time":{"start":1594531285478,"stop":1594531285484,"duration":6}},{"uid":"882a3c012ef28b66","status":"passed","time":{"start":1594163430960,"stop":1594163430968,"duration":8}},{"uid":"dfdd88579a2370f4","status":"passed","time":{"start":1594163037198,"stop":1594163037205,"duration":7}}]},"e15f1973b9fdb38f6fac61e3b46f93cc":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f8789af2e0cead9e","status":"passed","time":{"start":1733030101148,"stop":1733030101148,"duration":0}},{"uid":"6dfafb882d7cc41f","status":"passed","time":{"start":1732764221330,"stop":1732764221330,"duration":0}},{"uid":"8c8d43e9d38910da","status":"passed","time":{"start":1732428196461,"stop":1732428196461,"duration":0}},{"uid":"8427b8f31ff35d6c","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"a3beec2fa9a311c4","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"941f95519b8a2760d5d87e88d375511f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"df1a6e2728b6c2ba","status":"passed","time":{"start":1596047924118,"stop":1596047924119,"duration":1}},{"uid":"a2e88b1f5321c6e6","status":"passed","time":{"start":1596005124214,"stop":1596005124215,"duration":1}},{"uid":"3375d65369f2909a","status":"passed","time":{"start":1594531289052,"stop":1594531289053,"duration":1}},{"uid":"c2ea749412e943c0","status":"passed","time":{"start":1594163434557,"stop":1594163434558,"duration":1}},{"uid":"bc90e79697b04699","status":"passed","time":{"start":1594163040943,"stop":1594163040944,"duration":1}}]},"7fbc65fe31554720c70d1027b5a5aaf6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"86b431e3074334a7","status":"passed","time":{"start":1596047924652,"stop":1596047924654,"duration":2}},{"uid":"7e89c37648c19a41","status":"passed","time":{"start":1596005124782,"stop":1596005124783,"duration":1}},{"uid":"9cbcc9a1ef853dd7","status":"passed","time":{"start":1594531289664,"stop":1594531289665,"duration":1}},{"uid":"97971de30bfd7627","status":"passed","time":{"start":1594163435075,"stop":1594163435075,"duration":0}},{"uid":"794e47e81d3caebf","status":"passed","time":{"start":1594163041488,"stop":1594163041489,"duration":1}}]},"72a2d75b45f09e520765f369cfc2bc8f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a4cb6a94c77f28ce","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0}},{"uid":"99bd3e79aeea5636","status":"passed","time":{"start":1732764221033,"stop":1732764221033,"duration":0}},{"uid":"371c743cf6f64f1d","status":"passed","time":{"start":1732428196244,"stop":1732428196245,"duration":1}},{"uid":"26cf86ca9eda4b5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"34febd97f08d8df7","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"f6abc3263260f9b09426d486c18b1d1c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ae11fee7650ad13c","status":"passed","time":{"start":1596047924638,"stop":1596047924638,"duration":0}},{"uid":"ec0b9d2ff15e059e","status":"passed","time":{"start":1596005124753,"stop":1596005124756,"duration":3}},{"uid":"19a638a8db7fc515","status":"passed","time":{"start":1594531289646,"stop":1594531289647,"duration":1}},{"uid":"17c5dee327b3fd1c","status":"passed","time":{"start":1594163435062,"stop":1594163435063,"duration":1}},{"uid":"ee728fb3ef26d4b2","status":"passed","time":{"start":1594163041474,"stop":1594163041475,"duration":1}}]},"04bb543ec741bd163e341a33a1623692":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4e3fc5966ad47411","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0}},{"uid":"d6ad7a05187743ff","status":"passed","time":{"start":1732764219308,"stop":1732764219309,"duration":1}},{"uid":"256a10c9792b808f","status":"passed","time":{"start":1732428194628,"stop":1732428194628,"duration":0}},{"uid":"616180d049b16d1d","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"7ba8a4247f4c6307","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"4e8f158d2e887eb45841e908801e1bfa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1941721193cce28a","status":"passed","time":{"start":1596047919676,"stop":1596047919931,"duration":255}},{"uid":"732fcaf6e51ca4a","status":"passed","time":{"start":1596005119641,"stop":1596005119896,"duration":255}},{"uid":"567c1788ec42c341","status":"passed","time":{"start":1594531284550,"stop":1594531284797,"duration":247}},{"uid":"f36d1240b1684708","status":"passed","time":{"start":1594163430088,"stop":1594163430320,"duration":232}},{"uid":"e5c8d52471fa7f23","status":"passed","time":{"start":1594163036307,"stop":1594163036539,"duration":232}}]},"2e669f0529d36ab8d3f8a8bda96b4165":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e47d01d6abb5814e","status":"passed","time":{"start":1596047923263,"stop":1596047923264,"duration":1}},{"uid":"45b6c100df7805e3","status":"passed","time":{"start":1596005123260,"stop":1596005123261,"duration":1}},{"uid":"5876876ae43b4a8a","status":"passed","time":{"start":1594531288192,"stop":1594531288193,"duration":1}},{"uid":"ba06eb32053ff48b","status":"passed","time":{"start":1594163433722,"stop":1594163433723,"duration":1}},{"uid":"e40e9c5dc2dbbc4","status":"passed","time":{"start":1594163040188,"stop":1594163040189,"duration":1}}]},"7ee6731933bd9dff6fabc41830db1bf0":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"ec58e61448a9c6a8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098927,"stop":1733030098927,"duration":0}},{"uid":"8e9b4227c17ce17f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218853,"stop":1732764218853,"duration":0}},{"uid":"571176bf000b455b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194198,"stop":1732428194198,"duration":0}},{"uid":"87acfa055dcbe26a","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"a064a48d91c28f13","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"9f2093620517aae286b85ccc9f40b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f74a1a4c19be5344","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0}},{"uid":"ebad1371009d2223","status":"passed","time":{"start":1732764220243,"stop":1732764220243,"duration":0}},{"uid":"db6f47361aae7a53","status":"passed","time":{"start":1732428195563,"stop":1732428195563,"duration":0}},{"uid":"51971bf7ad109ed2","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"30cacf1f2fb31f20","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"e2716f691be2a9d6b5fd30d66b1f784d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f06328bb4646abe9","status":"passed","time":{"start":1733030100679,"stop":1733030100679,"duration":0}},{"uid":"fa6c346b04c031d5","status":"passed","time":{"start":1732764220731,"stop":1732764220732,"duration":1}},{"uid":"dd6fef8ab37d71ba","status":"passed","time":{"start":1732428196011,"stop":1732428196011,"duration":0}},{"uid":"e7eaed29fbceb75","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"aac9dbbaca38b054","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"e4a3219ae28469fc10d020cba24dd0dd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4e3518fb96f2d3b2","status":"passed","time":{"start":1596047920420,"stop":1596047920421,"duration":1}},{"uid":"6db01be431478f6a","status":"passed","time":{"start":1596005120319,"stop":1596005120320,"duration":1}},{"uid":"bd5ea58390f0a292","status":"passed","time":{"start":1594531285272,"stop":1594531285274,"duration":2}},{"uid":"8be8de5c8172e09b","status":"passed","time":{"start":1594163430739,"stop":1594163430740,"duration":1}},{"uid":"c996edcdf3d76d50","status":"passed","time":{"start":1594163036971,"stop":1594163036972,"duration":1}}]},"e52a4070adc4c9a5f7d9d15dc00dcd29":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"55638bba0759cb56","status":"passed","time":{"start":1596047923748,"stop":1596047923748,"duration":0}},{"uid":"62d5569b0cdd4875","status":"passed","time":{"start":1596005123782,"stop":1596005123783,"duration":1}},{"uid":"b732ea427fd44461","status":"passed","time":{"start":1594531288698,"stop":1594531288699,"duration":1}},{"uid":"717cb846ad5d46e","status":"passed","time":{"start":1594163434128,"stop":1594163434129,"duration":1}},{"uid":"16c3317126c9fbbc","status":"passed","time":{"start":1594163040592,"stop":1594163040593,"duration":1}}]},"301a4a5c6feaafe2de82b5b9900cd661":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ad3f08ee8482dbb3","status":"passed","time":{"start":1596047924645,"stop":1596047924645,"duration":0}},{"uid":"c50a7d17debdafc4","status":"passed","time":{"start":1596005124774,"stop":1596005124775,"duration":1}},{"uid":"613437d5b4c37efc","status":"passed","time":{"start":1594531289656,"stop":1594531289657,"duration":1}},{"uid":"4dc4edca45be600b","status":"passed","time":{"start":1594163435068,"stop":1594163435068,"duration":0}},{"uid":"e3639c83e28d56e9","status":"passed","time":{"start":1594163041481,"stop":1594163041482,"duration":1}}]},"5ec88dd2e1061775d1a54f008e35ffe5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"371bb28917263447","status":"passed","time":{"start":1596047923712,"stop":1596047923713,"duration":1}},{"uid":"945e602090de2952","status":"passed","time":{"start":1596005123746,"stop":1596005123748,"duration":2}},{"uid":"c76e88266fe8513e","status":"passed","time":{"start":1594531288652,"stop":1594531288653,"duration":1}},{"uid":"a12f02d97bfbdaf7","status":"passed","time":{"start":1594163434093,"stop":1594163434095,"duration":2}},{"uid":"4ded9c018409dec5","status":"passed","time":{"start":1594163040563,"stop":1594163040564,"duration":1}}]},"0b77c06fac1d0dda8fc01f3391f08471":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a3a31a9b373fe696","status":"passed","time":{"start":1596047924320,"stop":1596047924321,"duration":1}},{"uid":"a42fd1b52c788a43","status":"passed","time":{"start":1596005124421,"stop":1596005124423,"duration":2}},{"uid":"e0559ccad83713c8","status":"passed","time":{"start":1594531289260,"stop":1594531289261,"duration":1}},{"uid":"f9618f1299802d13","status":"passed","time":{"start":1594163434747,"stop":1594163434748,"duration":1}},{"uid":"60f573137e6be93b","status":"passed","time":{"start":1594163041136,"stop":1594163041137,"duration":1}}]},"3d20cddd76e145acdf8951f93bbd7aca":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"96ad66d817d9d01","status":"passed","time":{"start":1596047924137,"stop":1596047924139,"duration":2}},{"uid":"12377738ed99b4e7","status":"passed","time":{"start":1596005124234,"stop":1596005124236,"duration":2}},{"uid":"1a572099bd87c4ff","status":"passed","time":{"start":1594531289071,"stop":1594531289073,"duration":2}},{"uid":"d1964b006528dba7","status":"passed","time":{"start":1594163434576,"stop":1594163434577,"duration":1}},{"uid":"9d18077ad676acbb","status":"passed","time":{"start":1594163040961,"stop":1594163040964,"duration":3}}]},"4837bd231004cf7ec289887c52c12796":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b5ba84846c075db5","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0}},{"uid":"2991adec6435da10","status":"passed","time":{"start":1732764220892,"stop":1732764220893,"duration":1}},{"uid":"36685d778f756fae","status":"passed","time":{"start":1732428196138,"stop":1732428196139,"duration":1}},{"uid":"7c3ec7eab2e0be6d","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}},{"uid":"2fba83a53ac553ac","status":"passed","time":{"start":1724735129414,"stop":1724735129430,"duration":16}}]},"4d406a702da9fd827c8c4798d255a6cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ac824f903545a6e7","status":"passed","time":{"start":1733030099177,"stop":1733030099177,"duration":0}},{"uid":"1c9684bf403c80de","status":"passed","time":{"start":1732764219137,"stop":1732764219137,"duration":0}},{"uid":"e99ca5757342b866","status":"passed","time":{"start":1732428194463,"stop":1732428194463,"duration":0}},{"uid":"b9d7d0d5afb8734c","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}},{"uid":"bdcb772653d8aad","status":"passed","time":{"start":1724735127844,"stop":1724735127844,"duration":0}}]},"be99c6f72cdf623836966737dcb7a654":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"555817f2fd5ba68f","status":"passed","time":{"start":1733030100601,"stop":1733030100601,"duration":0}},{"uid":"8388a8495a8b75af","status":"passed","time":{"start":1732764220641,"stop":1732764220642,"duration":1}},{"uid":"8ea6e5a2b5515469","status":"passed","time":{"start":1732428195937,"stop":1732428195939,"duration":2}},{"uid":"c799982c38b97fcc","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}},{"uid":"af191d67a3f53ad3","status":"passed","time":{"start":1724735129227,"stop":1724735129227,"duration":0}}]},"7c48f5c6aa887d1bc76d081b028cf7cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ec0c7de9a70a5f5e","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0}},{"uid":"f26dca06c76121c7","status":"passed","time":{"start":1732764220572,"stop":1732764220573,"duration":1}},{"uid":"7d6c6bb6b47e11d4","status":"passed","time":{"start":1732428195874,"stop":1732428195875,"duration":1}},{"uid":"f1ac1e81621379df","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}},{"uid":"9d90f23892be7ac3","status":"passed","time":{"start":1724735129164,"stop":1724735129164,"duration":0}}]},"d4bb68fb8c0e59fc03fed525cca43eb5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"293f48722d8450df","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0}},{"uid":"49ad6a9c0404421b","status":"passed","time":{"start":1732764219290,"stop":1732764219291,"duration":1}},{"uid":"33e90a465d3b6e95","status":"passed","time":{"start":1732428194610,"stop":1732428194610,"duration":0}},{"uid":"a70ffb4d0a92e5c8","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"291bd12f30edb56f","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"4f7c4b258ce2dd212abc76d538a956bd":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"21221b4a48a21055","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030100184,"stop":1733030100184,"duration":0}},{"uid":"2890c501d19b5f47","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764220219,"stop":1732764220219,"duration":0}},{"uid":"b6d0f7b70ff35380","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428195535,"stop":1732428195535,"duration":0}},{"uid":"b72d4e8ad3288d1b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}},{"uid":"900ed6bd99df3d56","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735128836,"stop":1724735128836,"duration":0}}]},"44269ffb9aeaecd9b9cb3579ebfafa33":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":19,"unknown":0,"total":19},"items":[{"uid":"79f88c515080eaf0","status":"passed","time":{"start":1596047923899,"stop":1596047923900,"duration":1}},{"uid":"7342fa1ab12766d","status":"passed","time":{"start":1596005123934,"stop":1596005123936,"duration":2}},{"uid":"8e391f54d7032875","status":"passed","time":{"start":1594531288830,"stop":1594531288832,"duration":2}},{"uid":"f46bcb027664cf43","status":"passed","time":{"start":1594163434302,"stop":1594163434304,"duration":2}},{"uid":"cc5186acdd230ef2","status":"passed","time":{"start":1594163040716,"stop":1594163040717,"duration":1}}]},"fcd618577998a86f372b0608156ae679":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"769ac601b16802cc","status":"passed","time":{"start":1596047923875,"stop":1596047923876,"duration":1}},{"uid":"8ade1a4ed229c183","status":"passed","time":{"start":1596005123909,"stop":1596005123910,"duration":1}},{"uid":"f4445efd3f03b6ac","status":"passed","time":{"start":1594531288811,"stop":1594531288812,"duration":1}},{"uid":"a689309bcbef2944","status":"passed","time":{"start":1594163434277,"stop":1594163434278,"duration":1}},{"uid":"537f31bc291596c7","status":"passed","time":{"start":1594163040695,"stop":1594163040696,"duration":1}}]},"dd45bde8a5798bd4dac8809e8aa8206c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"aa0fd3e8d8009a95","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0}},{"uid":"64ddebaa5d6679fc","status":"passed","time":{"start":1732764220198,"stop":1732764220198,"duration":0}},{"uid":"9267ea7150c527ef","status":"passed","time":{"start":1732428195510,"stop":1732428195510,"duration":0}},{"uid":"1719ddf6913445c8","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"66511dda8143933e","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"6753f1fa7219c8cb1c1cfd633e3291ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"33a9357aa53f398b","status":"passed","time":{"start":1596047924382,"stop":1596047924383,"duration":1}},{"uid":"c665ad0a0e6c711d","status":"passed","time":{"start":1596005124486,"stop":1596005124487,"duration":1}},{"uid":"f218d7354c801b8e","status":"passed","time":{"start":1594531289330,"stop":1594531289331,"duration":1}},{"uid":"804d243cf20fb592","status":"passed","time":{"start":1594163434803,"stop":1594163434804,"duration":1}},{"uid":"57fbb6cfee6391bf","status":"passed","time":{"start":1594163041193,"stop":1594163041194,"duration":1}}]},"c07c7cb9e4aa2b6b273c9327f48ca674":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6b2ccbd851ec600","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0}},{"uid":"190ed93e28b901b","status":"passed","time":{"start":1732764220999,"stop":1732764220999,"duration":0}},{"uid":"698c99dcac4b0d93","status":"passed","time":{"start":1732428196215,"stop":1732428196215,"duration":0}},{"uid":"1188dda60b67ea96","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"3d238edf9c2316ff","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"fed42f6855f5f40945177fa4c23f0f10":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c56c5e45a02efbb2","status":"passed","time":{"start":1596047923566,"stop":1596047923569,"duration":3}},{"uid":"6529db7b1ff7aad9","status":"passed","time":{"start":1596005123578,"stop":1596005123582,"duration":4}},{"uid":"27045d81bffc6b89","status":"passed","time":{"start":1594531288509,"stop":1594531288513,"duration":4}},{"uid":"e4330e446bec81c2","status":"passed","time":{"start":1594163433963,"stop":1594163433968,"duration":5}},{"uid":"1f375106e30801d1","status":"passed","time":{"start":1594163040441,"stop":1594163040443,"duration":2}}]},"0f9fe14df4043e3026ded68af344e3f2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4cc7d24b84024142","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0}},{"uid":"59e860fc2782867c","status":"passed","time":{"start":1732764220156,"stop":1732764220156,"duration":0}},{"uid":"b2ea4d6d64dc027a","status":"passed","time":{"start":1732428195466,"stop":1732428195466,"duration":0}},{"uid":"6ab6caccad49b468","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"ccf5a8c46639d0ec","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"b5060eb4345bb1fe079895175d656cb8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6db30c4ff5c46df7","status":"passed","time":{"start":1596047920279,"stop":1596047920280,"duration":1}},{"uid":"bf01c1cf3a02fe61","status":"passed","time":{"start":1596005120178,"stop":1596005120179,"duration":1}},{"uid":"898fe1232be29d1f","status":"passed","time":{"start":1594531285142,"stop":1594531285144,"duration":2}},{"uid":"97d7e6522c252b56","status":"passed","time":{"start":1594163430629,"stop":1594163430630,"duration":1}},{"uid":"7deee5701b71c0b1","status":"passed","time":{"start":1594163036850,"stop":1594163036852,"duration":2}}]},"da381d769d9c85b15441af4ada467c58":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"51966bed69fa2237","status":"passed","time":{"start":1596047923958,"stop":1596047923959,"duration":1}},{"uid":"1c066221956be17","status":"passed","time":{"start":1596005124034,"stop":1596005124035,"duration":1}},{"uid":"6212488cfd2a4684","status":"passed","time":{"start":1594531288891,"stop":1594531288892,"duration":1}},{"uid":"6fbf63bbaf63780b","status":"passed","time":{"start":1594163434379,"stop":1594163434381,"duration":2}},{"uid":"101888eedff2506d","status":"passed","time":{"start":1594163040774,"stop":1594163040774,"duration":0}}]},"cff7d7f7b55b35458669cd92cb129d06":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4d53eb58d77047e8","status":"passed","time":{"start":1733030098989,"stop":1733030098989,"duration":0}},{"uid":"5ad5cb812fbd5d4a","status":"passed","time":{"start":1732764218926,"stop":1732764218926,"duration":0}},{"uid":"cf71a425c4796a9","status":"passed","time":{"start":1732428194268,"stop":1732428194268,"duration":0}},{"uid":"fd4d83368b6d5d5e","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}},{"uid":"689de206e9df0991","status":"passed","time":{"start":1724735127672,"stop":1724735127672,"duration":0}}]},"2dc5f3dd0a3e6e7beee8f439047c4032":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ad3e6b6eddb975ef","status":"passed","time":{"start":1733030101164,"stop":1733030101164,"duration":0}},{"uid":"4710cc2182eb85cb","status":"passed","time":{"start":1732764221358,"stop":1732764221359,"duration":1}},{"uid":"54bb63fb3736b8ae","status":"passed","time":{"start":1732428196482,"stop":1732428196482,"duration":0}},{"uid":"b97e3a9bf54f17f3","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}},{"uid":"73d92f8f0c07772d","status":"passed","time":{"start":1724735129774,"stop":1724735129774,"duration":0}}]},"7cff1d7692fe8bf77b7f716ce4e74775":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e95cacac5e122c","status":"passed","time":{"start":1596047920614,"stop":1596047920615,"duration":1}},{"uid":"6a8ebf1d563b029","status":"passed","time":{"start":1596005120508,"stop":1596005120510,"duration":2}},{"uid":"76119461e6bbe7b5","status":"passed","time":{"start":1594531285444,"stop":1594531285445,"duration":1}},{"uid":"8ae0c921930f3997","status":"passed","time":{"start":1594163430915,"stop":1594163430916,"duration":1}},{"uid":"3b689712ade903e1","status":"passed","time":{"start":1594163037159,"stop":1594163037162,"duration":3}}]},"f9568f445cf6471d62f38f61a6e1887d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"badb2c1a8c5e2d2d","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"664f2a2d41bf2bd8","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"5ea1e8d078b774a7","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"6c1504a4fcfadf69","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"a83637127d81f7d9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"12f0f975ccfd38a2860e83db6017e19f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"fef6b9be2b6df65c","status":"passed","time":{"start":1733030101054,"stop":1733030101054,"duration":0}},{"uid":"a5b469ea69ba375b","status":"passed","time":{"start":1732764221204,"stop":1732764221204,"duration":0}},{"uid":"f701011259e850f6","status":"passed","time":{"start":1732428196359,"stop":1732428196359,"duration":0}},{"uid":"e10517b1ea4eb479","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}},{"uid":"2cbc31ebfbb61905","status":"passed","time":{"start":1724735129649,"stop":1724735129649,"duration":0}}]},"3ade0b8dc3a70452a99ea470cea361ac":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a1c87b2c2a6c0bb7","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0}},{"uid":"2be24f9b66669d76","status":"passed","time":{"start":1732764221056,"stop":1732764221056,"duration":0}},{"uid":"345a3bae73357330","status":"passed","time":{"start":1732428196265,"stop":1732428196265,"duration":0}},{"uid":"c35da98b55fb5e6b","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"6a770856a19e186","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"89f53112353ba49dc8f3a4029d39ba34":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b4c3bd7788c9f57d","status":"passed","time":{"start":1733030100309,"stop":1733030100309,"duration":0}},{"uid":"63a8ebd07b8fa1c4","status":"passed","time":{"start":1732764220337,"stop":1732764220337,"duration":0}},{"uid":"70963d87150b1b7f","status":"passed","time":{"start":1732428195660,"stop":1732428195660,"duration":0}},{"uid":"59863a86bad45fb3","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}},{"uid":"29266ed99d46b2a","status":"passed","time":{"start":1724735128946,"stop":1724735128946,"duration":0}}]},"a6cf7a78113925c8ce86bec289a2189d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c7e18ff4ddc5c92a","status":"passed","time":{"start":1596047924091,"stop":1596047924093,"duration":2}},{"uid":"7b2e4e8402f55302","status":"passed","time":{"start":1596005124192,"stop":1596005124193,"duration":1}},{"uid":"b0cb918932f1257a","status":"passed","time":{"start":1594531289032,"stop":1594531289032,"duration":0}},{"uid":"546cae077bf7ca6a","status":"passed","time":{"start":1594163434534,"stop":1594163434535,"duration":1}},{"uid":"2c43d13401571ecf","status":"passed","time":{"start":1594163040922,"stop":1594163040923,"duration":1}}]},"a1dee0241acea84cdb83fd9eaabd5c04":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3a516b9dc7b53625","status":"passed","time":{"start":1733030100929,"stop":1733030100929,"duration":0}},{"uid":"d0246537274067fb","status":"passed","time":{"start":1732764221017,"stop":1732764221018,"duration":1}},{"uid":"a4849e99633e4676","status":"passed","time":{"start":1732428196230,"stop":1732428196230,"duration":0}},{"uid":"327fbdea3443aca5","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}},{"uid":"c301f45b01d7d10f","status":"passed","time":{"start":1724735129524,"stop":1724735129524,"duration":0}}]},"6738a51245363d65952509f12ebc1af8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"733b2334645f5c42","status":"passed","time":{"start":1733030100262,"stop":1733030100262,"duration":0}},{"uid":"416bb0c0ac58f7b6","status":"passed","time":{"start":1732764220293,"stop":1732764220293,"duration":0}},{"uid":"59b1922c33f3ac65","status":"passed","time":{"start":1732428195616,"stop":1732428195616,"duration":0}},{"uid":"9b82a842fdc9b867","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}},{"uid":"4c3877c30e625752","status":"passed","time":{"start":1724735128914,"stop":1724735128914,"duration":0}}]},"a2426de0b4808429aff451df95bbdc21":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1d2cfb77eef4360e","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0}},{"uid":"8605c2bc186d7f9a","status":"passed","time":{"start":1732764220171,"stop":1732764220172,"duration":1}},{"uid":"f5177f712a8be6da","status":"passed","time":{"start":1732428195484,"stop":1732428195485,"duration":1}},{"uid":"d8d5d2ee94f4b051","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"62e4f6698c2439c","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"464e445546d6c625c166d17d836fe45c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"43a52f18fb3b8136","status":"passed","time":{"start":1733030098739,"stop":1733030098739,"duration":0}},{"uid":"e7035dc3ef8d99c0","status":"passed","time":{"start":1732764218663,"stop":1732764218663,"duration":0}},{"uid":"461527a27e50c04a","status":"passed","time":{"start":1732428194015,"stop":1732428194015,"duration":0}},{"uid":"95ddc175910ea52","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}},{"uid":"16026a681cee6bae","status":"passed","time":{"start":1724735127266,"stop":1724735127266,"duration":0}}]},"b49a06236d1af1a464e84083e52f6b22":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d49eccd60ce84feb","status":"passed","time":{"start":1733030098927,"stop":1733030098927,"duration":0}},{"uid":"4eb91d777aea105a","status":"passed","time":{"start":1732764218861,"stop":1732764218861,"duration":0}},{"uid":"5ea5418b10cdf416","status":"passed","time":{"start":1732428194207,"stop":1732428194207,"duration":0}},{"uid":"5e6aa533c6c0fafa","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}},{"uid":"d65c16a1b47d468e","status":"passed","time":{"start":1724735127485,"stop":1724735127485,"duration":0}}]},"c6165a75ca9eea153433d316f4ac3eb9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"93260917d8d1730d","status":"passed","time":{"start":1596047924343,"stop":1596047924344,"duration":1}},{"uid":"c74080002f5998f4","status":"passed","time":{"start":1596005124449,"stop":1596005124450,"duration":1}},{"uid":"7ebd44671756394c","status":"passed","time":{"start":1594531289286,"stop":1594531289286,"duration":0}},{"uid":"e09926b95d980041","status":"passed","time":{"start":1594163434769,"stop":1594163434770,"duration":1}},{"uid":"ca5dbfdf828fd84b","status":"passed","time":{"start":1594163041158,"stop":1594163041159,"duration":1}}]},"faebae956c3da12c5f429266c959c030":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3d9d773987a3ac09","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0}},{"uid":"1c3655d4a978bd79","status":"passed","time":{"start":1732764220192,"stop":1732764220192,"duration":0}},{"uid":"87dc5713a007f1d7","status":"passed","time":{"start":1732428195501,"stop":1732428195501,"duration":0}},{"uid":"d9458c8615b9e985","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}},{"uid":"863d982a547ab48a","status":"passed","time":{"start":1724735128805,"stop":1724735128805,"duration":0}}]},"5ade91fb72a8c6b40f8def4106a376c0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1d5767f16afc3bd8","status":"passed","time":{"start":1596047923917,"stop":1596047923918,"duration":1}},{"uid":"e686dcdf2807c271","status":"passed","time":{"start":1596005123957,"stop":1596005123958,"duration":1}},{"uid":"a9361839c25b3e08","status":"passed","time":{"start":1594531288846,"stop":1594531288847,"duration":1}},{"uid":"1c2bfb84e88d2c39","status":"passed","time":{"start":1594163434328,"stop":1594163434329,"duration":1}},{"uid":"996f2e4824ff8649","status":"passed","time":{"start":1594163040732,"stop":1594163040733,"duration":1}}]},"d52901f553e103c17fa73d8148d8b604":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"91c1d8a1fc37f84","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0}},{"uid":"46eea1e10beb3240","status":"passed","time":{"start":1732764220443,"stop":1732764220443,"duration":0}},{"uid":"2baefc3521a1da2a","status":"passed","time":{"start":1732428195750,"stop":1732428195751,"duration":1}},{"uid":"76548c4669002681","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"fb032b53923bc0e9","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"12e938cceeb3c2541d2a8441fd1037c9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":20,"unknown":0,"total":20},"items":[{"uid":"91f1da3329a1a671","status":"passed","time":{"start":1596047919127,"stop":1596047919129,"duration":2}},{"uid":"41496dbd64dd1c9c","status":"passed","time":{"start":1596005119184,"stop":1596005119186,"duration":2}},{"uid":"cb957225d743894a","status":"passed","time":{"start":1594531284076,"stop":1594531284078,"duration":2}},{"uid":"5e887dd6d7625f8","status":"passed","time":{"start":1594163429645,"stop":1594163429647,"duration":2}},{"uid":"2446a309189eda9d","status":"passed","time":{"start":1594163035809,"stop":1594163035811,"duration":2}}]},"32fca0dba156c29ff0c5aa5efe4a761f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e29672a56bdf38c1","status":"passed","time":{"start":1596047923830,"stop":1596047923831,"duration":1}},{"uid":"801ff19c5bf67125","status":"passed","time":{"start":1596005123859,"stop":1596005123864,"duration":5}},{"uid":"53f1e2f5b475a268","status":"passed","time":{"start":1594531288774,"stop":1594531288775,"duration":1}},{"uid":"22ec47c3f794f2b2","status":"passed","time":{"start":1594163434235,"stop":1594163434235,"duration":0}},{"uid":"d2f81d0cf163dbce","status":"passed","time":{"start":1594163040661,"stop":1594163040662,"duration":1}}]},"250e37eef35f96fa2557cde52e0899db":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d22f747573a022e2","status":"passed","time":{"start":1596047919607,"stop":1596047919610,"duration":3}},{"uid":"16bd58c8b6c3a1e0","status":"passed","time":{"start":1596005119586,"stop":1596005119588,"duration":2}},{"uid":"6dc5fd07ddbfc757","status":"passed","time":{"start":1594531284488,"stop":1594531284489,"duration":1}},{"uid":"7e96f18e152c398","status":"passed","time":{"start":1594163430041,"stop":1594163430041,"duration":0}},{"uid":"65b810d84de0efeb","status":"passed","time":{"start":1594163036257,"stop":1594163036258,"duration":1}}]},"9099ed84dac5ff19b3e1ff40f3781efd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"244ec661f6b4f13e","status":"passed","time":{"start":1596047923760,"stop":1596047923766,"duration":6}},{"uid":"4576ef357da3660a","status":"passed","time":{"start":1596005123794,"stop":1596005123797,"duration":3}},{"uid":"81334e5a4cdd758d","status":"passed","time":{"start":1594531288709,"stop":1594531288711,"duration":2}},{"uid":"480df397e0797521","status":"passed","time":{"start":1594163434139,"stop":1594163434141,"duration":2}},{"uid":"354bf46a9801f24c","status":"passed","time":{"start":1594163040607,"stop":1594163040609,"duration":2}}]},"6f72fd5fb63f9cad16ccb27d6b59b668":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d55a4c35e21d8111","status":"passed","time":{"start":1596047924690,"stop":1596047924692,"duration":2}},{"uid":"f4e853010f35408c","status":"passed","time":{"start":1596005124837,"stop":1596005124838,"duration":1}},{"uid":"2c40e2f3652fc386","status":"passed","time":{"start":1594531289709,"stop":1594531289710,"duration":1}},{"uid":"d3e56ff953e034bc","status":"passed","time":{"start":1594163435112,"stop":1594163435112,"duration":0}},{"uid":"678c65df6866a264","status":"passed","time":{"start":1594163041528,"stop":1594163041528,"duration":0}}]},"81b718c3bba361637ce9ed2266cd30d2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"68fbe283acac1b6a","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"ed9cfa6ba87dba0e","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"9fa9266ff3a1c464","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"280a7287fd39d5a9","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}},{"uid":"f80f9bf6821c7c25","status":"passed","time":{"start":1724733474194,"stop":1724733474194,"duration":0}}]},"d8680aad50eda2b69694580584e0455f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4a970025f2147b3a","status":"passed","time":{"start":1733030100633,"stop":1733030100633,"duration":0}},{"uid":"b3f6328bce0de37c","status":"passed","time":{"start":1732764220676,"stop":1732764220677,"duration":1}},{"uid":"749e2bcfe9e98a99","status":"passed","time":{"start":1732428195966,"stop":1732428195967,"duration":1}},{"uid":"fd395297ed368b03","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}},{"uid":"ad12195e4f930686","status":"passed","time":{"start":1724735129258,"stop":1724735129258,"duration":0}}]},"08aa958df6a92148f413a19d338a9eb7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1e6b94c934c41c63","status":"passed","time":{"start":1596047924514,"stop":1596047924515,"duration":1}},{"uid":"5fe37a0138c46e89","status":"passed","time":{"start":1596005124616,"stop":1596005124619,"duration":3}},{"uid":"a0b77d338096296e","status":"passed","time":{"start":1594531289488,"stop":1594531289490,"duration":2}},{"uid":"636bf20aba05bc6c","status":"passed","time":{"start":1594163434934,"stop":1594163434935,"duration":1}},{"uid":"e8d7973f586e9ccb","status":"passed","time":{"start":1594163041332,"stop":1594163041333,"duration":1}}]},"c421bbdf427fc6e784d70fcb75e166ee":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8da8c6de16bb179d","status":"passed","time":{"start":1733030098755,"stop":1733030098755,"duration":0}},{"uid":"e604a93a8ee1253f","status":"passed","time":{"start":1732764218683,"stop":1732764218684,"duration":1}},{"uid":"4b8219eb37520d2d","status":"passed","time":{"start":1732428194032,"stop":1732428194032,"duration":0}},{"uid":"f711bbcd16ab2119","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}},{"uid":"5c64823a2a73f974","status":"passed","time":{"start":1724735127282,"stop":1724735127297,"duration":15}}]},"f00dbd2e8a201d8a4d1b6579cc3223ba":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4a8a1e214063ff65","status":"passed","time":{"start":1596047923734,"stop":1596047923735,"duration":1}},{"uid":"186805975928e06a","status":"passed","time":{"start":1596005123766,"stop":1596005123768,"duration":2}},{"uid":"bc6d10b8797a9453","status":"passed","time":{"start":1594531288674,"stop":1594531288676,"duration":2}},{"uid":"fd9fb7a049562c32","status":"passed","time":{"start":1594163434112,"stop":1594163434113,"duration":1}},{"uid":"163db5f277b6af87","status":"passed","time":{"start":1594163040579,"stop":1594163040581,"duration":2}}]},"9f1de1fe45fbdc513df7a1c52ccbe6cd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":21,"unknown":0,"total":21},"items":[{"uid":"27b9b90941b4a09d","status":"passed","time":{"start":1596047919314,"stop":1596047919420,"duration":106}},{"uid":"507686eb54f5631d","status":"passed","time":{"start":1596005119328,"stop":1596005119452,"duration":124}},{"uid":"8019875ea2402996","status":"passed","time":{"start":1594531284224,"stop":1594531284357,"duration":133}},{"uid":"a62191f41226c32f","status":"passed","time":{"start":1594163429787,"stop":1594163429916,"duration":129}},{"uid":"c60e547f7d18d710","status":"passed","time":{"start":1594163035983,"stop":1594163036093,"duration":110}}]},"95946a599255beb095c6c7c676174082":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"6f178467aa4ed9b7","status":"passed","time":{"start":1733030100590,"stop":1733030100601,"duration":11}},{"uid":"a13c451f0f676900","status":"passed","time":{"start":1732764220628,"stop":1732764220637,"duration":9}},{"uid":"772347d4d5d65952","status":"passed","time":{"start":1732428195930,"stop":1732428195933,"duration":3}},{"uid":"c1d9afec6278b1a8","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c1ed75effe27f7a1","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"08d55d87371c9d6a38d501e944ac0b1f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":15,"unknown":0,"total":15},"items":[{"uid":"c162767685f61de7","status":"passed","time":{"start":1596047919110,"stop":1596047919112,"duration":2}},{"uid":"450686303edfc2db","status":"passed","time":{"start":1596005119174,"stop":1596005119175,"duration":1}},{"uid":"8bb392cdc602893a","status":"passed","time":{"start":1594531284064,"stop":1594531284066,"duration":2}},{"uid":"3ac4a46ef24846a9","status":"passed","time":{"start":1594163429634,"stop":1594163429636,"duration":2}},{"uid":"8f5d76af04264041","status":"passed","time":{"start":1594163035798,"stop":1594163035800,"duration":2}}]},"5df41bc58298db69fd38e5f451411b25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"74fbc1afd2c7c344","status":"passed","time":{"start":1596047920639,"stop":1596047920641,"duration":2}},{"uid":"1b4e740d93c8208b","status":"passed","time":{"start":1596005120526,"stop":1596005120527,"duration":1}},{"uid":"1c78a3ca97fda5cc","status":"passed","time":{"start":1594531285458,"stop":1594531285459,"duration":1}},{"uid":"7a4314da211e2744","status":"passed","time":{"start":1594163430936,"stop":1594163430937,"duration":1}},{"uid":"5836c1f244bdbda0","status":"passed","time":{"start":1594163037179,"stop":1594163037180,"duration":1}}]},"6685c18cbd7e0553ec2f8d1307b48808":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"792bfe395a28b94b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919573,"stop":1596047919573,"duration":0}},{"uid":"97f2919ac27afdda","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119564,"stop":1596005119564,"duration":0}},{"uid":"ea482f08a9d34c61","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284465,"stop":1594531284465,"duration":0}},{"uid":"18429a5f8ba1820","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430020,"stop":1594163430020,"duration":0}},{"uid":"e3d7347403a550e9","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036237,"stop":1594163036237,"duration":0}}]},"009b1aac11c158282ad25341a25251c6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4534be43bb2e79cb","status":"passed","time":{"start":1596047923774,"stop":1596047923776,"duration":2}},{"uid":"b0fb5d056b3ce31f","status":"passed","time":{"start":1596005123805,"stop":1596005123810,"duration":5}},{"uid":"96c55d143f66294b","status":"passed","time":{"start":1594531288718,"stop":1594531288722,"duration":4}},{"uid":"6c3f4d98661a503e","status":"passed","time":{"start":1594163434177,"stop":1594163434181,"duration":4}},{"uid":"eefe749a429a9068","status":"passed","time":{"start":1594163040617,"stop":1594163040619,"duration":2}}]},"10a3e4c4777cbd9f17c15fd5e6bea5ba":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"90130454fa133eaa","status":"passed","time":{"start":1596047923255,"stop":1596047923257,"duration":2}},{"uid":"429fabd504d68af0","status":"passed","time":{"start":1596005123252,"stop":1596005123253,"duration":1}},{"uid":"1715f0217bf76dc5","status":"passed","time":{"start":1594531288186,"stop":1594531288187,"duration":1}},{"uid":"f3747012913193d5","status":"passed","time":{"start":1594163433716,"stop":1594163433716,"duration":0}},{"uid":"e861a2bd0d0390d7","status":"passed","time":{"start":1594163040182,"stop":1594163040183,"duration":1}}]},"7175898242492ec1d3bdd5698d625ca4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b92f0db6c4ee4ff0","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0}},{"uid":"4249127f6bff6f10","status":"passed","time":{"start":1732764218611,"stop":1732764218616,"duration":5}},{"uid":"7cc0844ab5ecf216","status":"passed","time":{"start":1732428193967,"stop":1732428193967,"duration":0}},{"uid":"47f8df09a84d8337","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"409595d25cc5d60c","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"e2edeca1f212268fe8082320adfcc98c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8572ffe92ddcaa11","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0}},{"uid":"200b5f0b4ec790a3","status":"passed","time":{"start":1732764219366,"stop":1732764219372,"duration":6}},{"uid":"5f6f3bc16b3488d6","status":"passed","time":{"start":1732428194686,"stop":1732428194689,"duration":3}},{"uid":"c1e0648976f6a694","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}},{"uid":"b3f7088fed8dedd7","status":"passed","time":{"start":1724735128078,"stop":1724735128078,"duration":0}}]},"9698ab5989e4dd5f129cd455d41d02a9":{"statistic":{"failed":0,"broken":0,"skipped":31,"passed":3,"unknown":0,"total":34},"items":[{"uid":"1066431203872fbe","status":"passed","time":{"start":1596047919174,"stop":1596047919179,"duration":5}},{"uid":"2eefe1c648d463d9","status":"passed","time":{"start":1596005119222,"stop":1596005119223,"duration":1}},{"uid":"4f725a6b8ce2a04a","status":"passed","time":{"start":1594531284126,"stop":1594531284128,"duration":2}},{"uid":"baeb7d882d81dbc7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429690,"stop":1594163429690,"duration":0}},{"uid":"c6d5793582cd48d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035867,"stop":1594163035867,"duration":0}}]},"14f36f48218b5a6c45bb6c1fdb646e2d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f56ae5fa4f278c43","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0}},{"uid":"c244be500ebdf146","status":"passed","time":{"start":1732764219337,"stop":1732764219339,"duration":2}},{"uid":"5fabad9204d0747c","status":"passed","time":{"start":1732428194661,"stop":1732428194663,"duration":2}},{"uid":"826a0963540c6e75","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"4359475f5ec554bd","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"c8ef830d4279bee02e53bf3a04349c35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"873ec1972fa36468","status":"passed","time":{"start":1733030100898,"stop":1733030100898,"duration":0}},{"uid":"b26a6745cd367097","status":"passed","time":{"start":1732764220981,"stop":1732764220981,"duration":0}},{"uid":"36b7cb5a27235272","status":"passed","time":{"start":1732428196200,"stop":1732428196201,"duration":1}},{"uid":"afce902b58f1520a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}},{"uid":"b14acb4de8eb0e3a","status":"passed","time":{"start":1724735129492,"stop":1724735129492,"duration":0}}]},"fbdd2daae3e9a5e6dd05fcb0403a88d1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"95500b18da61d76","status":"passed","time":{"start":1733030100648,"stop":1733030100648,"duration":0}},{"uid":"5f97df940bb3f46a","status":"passed","time":{"start":1732764220696,"stop":1732764220696,"duration":0}},{"uid":"a349732eb44f62b9","status":"passed","time":{"start":1732428195982,"stop":1732428195982,"duration":0}},{"uid":"d1aabae67bc18ba0","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}},{"uid":"fbbb69f84c1b433f","status":"passed","time":{"start":1724735129274,"stop":1724735129274,"duration":0}}]},"66d8a13009f945d9794886c65acfdceb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"84e0330ba9cd1f01","status":"passed","time":{"start":1596047923599,"stop":1596047923600,"duration":1}},{"uid":"5cf309afc9d6e0d1","status":"passed","time":{"start":1596005123635,"stop":1596005123636,"duration":1}},{"uid":"edae067b2ea367b3","status":"passed","time":{"start":1594531288548,"stop":1594531288550,"duration":2}},{"uid":"5e7c21f369ff7f35","status":"passed","time":{"start":1594163433994,"stop":1594163433995,"duration":1}},{"uid":"4680835c89b2540f","status":"passed","time":{"start":1594163040481,"stop":1594163040484,"duration":3}}]},"97004dd24763a55cdf2b4ee4f115bd44":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"87b0b5de93d5cb12","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0}},{"uid":"80a5eacfa2431348","status":"passed","time":{"start":1732764220479,"stop":1732764220479,"duration":0}},{"uid":"593778a5ba99d447","status":"passed","time":{"start":1732428195787,"stop":1732428195788,"duration":1}},{"uid":"df0c490941a6877a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"c7106989a12e3c0a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"db5c81791cace9d397d4337f1f69a0e8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"63f25f39ce9ccdfd","status":"passed","time":{"start":1596047923468,"stop":1596047923470,"duration":2}},{"uid":"c57769319735863a","status":"passed","time":{"start":1596005123469,"stop":1596005123472,"duration":3}},{"uid":"5221347d626053ed","status":"passed","time":{"start":1594531288381,"stop":1594531288382,"duration":1}},{"uid":"923f7d7a94f657f2","status":"passed","time":{"start":1594163433869,"stop":1594163433871,"duration":2}},{"uid":"430c4e65e958cff9","status":"passed","time":{"start":1594163040357,"stop":1594163040359,"duration":2}}]},"6105a97f729c5e36b325cf44492db688":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d2af0876e7f45a7f","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0}},{"uid":"c700736d12b44c86","status":"passed","time":{"start":1732764220619,"stop":1732764220619,"duration":0}},{"uid":"b36380d1077ce20b","status":"passed","time":{"start":1732428195921,"stop":1732428195921,"duration":0}},{"uid":"1f991ba5bad9e7e9","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"742a65a772f90af2","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"f33ef5393ae0b8067a498b7663b7a090":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7bbd91ef770b0a79","status":"passed","time":{"start":1596047919439,"stop":1596047919442,"duration":3}},{"uid":"b108994b21d28e9e","status":"passed","time":{"start":1596005119462,"stop":1596005119464,"duration":2}},{"uid":"72f9cfb3eb7e616a","status":"passed","time":{"start":1594531284366,"stop":1594531284373,"duration":7}},{"uid":"42f05ccc173e452d","status":"passed","time":{"start":1594163429926,"stop":1594163429928,"duration":2}},{"uid":"30281d7f1737563b","status":"passed","time":{"start":1594163036104,"stop":1594163036109,"duration":5}}]},"15c98dd02f856858ef67a88bd3c8ad78":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ae87022eb9b205bd","status":"passed","time":{"start":1733030100575,"stop":1733030100575,"duration":0}},{"uid":"e751c9c9dc3d04e6","status":"passed","time":{"start":1732764220624,"stop":1732764220625,"duration":1}},{"uid":"da02dcc2ce3c4d85","status":"passed","time":{"start":1732428195926,"stop":1732428195926,"duration":0}},{"uid":"52dd320a58bdb229","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}},{"uid":"c8b2e451486f6a25","status":"passed","time":{"start":1724735129211,"stop":1724735129211,"duration":0}}]},"83b78a44a84315eae8c56a708925a03e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a5a7f52be4bf7369","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0}},{"uid":"8dfef1ba8856d412","status":"passed","time":{"start":1732764221040,"stop":1732764221041,"duration":1}},{"uid":"b67813f1cae4659e","status":"passed","time":{"start":1732428196249,"stop":1732428196250,"duration":1}},{"uid":"cde5d1b46b10d7ac","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"f5a3f0d4d035c3a4","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"9af049da90f73c206ca7e8b1362e502f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1fb0e4ddfae0bf06","status":"passed","time":{"start":1733030098958,"stop":1733030098958,"duration":0}},{"uid":"bb0cb59f0e1a4eca","status":"passed","time":{"start":1732764218887,"stop":1732764218887,"duration":0}},{"uid":"5cd4eeb8a4b79d6b","status":"passed","time":{"start":1732428194232,"stop":1732428194233,"duration":1}},{"uid":"645c6c05562d2f01","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}},{"uid":"34569132e9551c33","status":"passed","time":{"start":1724735127516,"stop":1724735127516,"duration":0}}]},"0e1169325045c4d7d4ed6982c76387ed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"ead644ae8ee031c3","status":"passed","time":{"start":1733030100512,"stop":1733030100512,"duration":0}},{"uid":"183ba5aa4a18280","status":"passed","time":{"start":1732764220545,"stop":1732764220545,"duration":0}},{"uid":"62e01ffb20b661b5","status":"passed","time":{"start":1732428195854,"stop":1732428195854,"duration":0}}]},"13df60cbdff5ee076adcd6328cc69159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a492c358ecb2902d","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0}},{"uid":"fcb92722bb71757b","status":"passed","time":{"start":1732764220954,"stop":1732764220955,"duration":1}},{"uid":"c580e79550c46f66","status":"passed","time":{"start":1732428196179,"stop":1732428196179,"duration":0}},{"uid":"d6e6e46de805754f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"6881087bd4c8b374","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"b1ff2214ba100eb1c8bc62e73e12889e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f0d7d5d837d1a81d","status":"passed","time":{"start":1733030100465,"stop":1733030100465,"duration":0}},{"uid":"89d5ee585c13bf38","status":"passed","time":{"start":1732764220499,"stop":1732764220500,"duration":1}},{"uid":"a770e6ac7d91604a","status":"passed","time":{"start":1732428195810,"stop":1732428195810,"duration":0}},{"uid":"6a1d96979e635e7f","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}},{"uid":"4bdc75ea73bb042","status":"passed","time":{"start":1724735129102,"stop":1724735129102,"duration":0}}]},"9cb38a55c7ac06311e8c5af89695fec1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d36b734326a418ad","status":"passed","time":{"start":1596047924708,"stop":1596047924709,"duration":1}},{"uid":"d571a1a111e792e9","status":"passed","time":{"start":1596005124867,"stop":1596005124868,"duration":1}},{"uid":"a287c9ffdbd24ff2","status":"passed","time":{"start":1594531289732,"stop":1594531289734,"duration":2}},{"uid":"c408ef07d0a5878d","status":"passed","time":{"start":1594163435130,"stop":1594163435131,"duration":1}},{"uid":"d11aa2f432bcaf9f","status":"passed","time":{"start":1594163041548,"stop":1594163041550,"duration":2}}]},"27ca516382a0a79e50821018f1f7db16":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"704fccc514ead891","status":"passed","time":{"start":1596047924664,"stop":1596047924664,"duration":0}},{"uid":"d25650a111e275c2","status":"passed","time":{"start":1596005124797,"stop":1596005124798,"duration":1}},{"uid":"a9c947811351a831","status":"passed","time":{"start":1594531289676,"stop":1594531289677,"duration":1}},{"uid":"84b89d1478e898eb","status":"passed","time":{"start":1594163435085,"stop":1594163435086,"duration":1}},{"uid":"54f06ea08d3ef59f","status":"passed","time":{"start":1594163041499,"stop":1594163041500,"duration":1}}]},"d35757cf261e283f5eab532965102602":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"47e3461a4e252fc1","status":"passed","time":{"start":1733030100851,"stop":1733030100851,"duration":0}},{"uid":"3d40466198fa34e6","status":"passed","time":{"start":1732764220916,"stop":1732764220916,"duration":0}},{"uid":"fda81d5edcbfeda5","status":"passed","time":{"start":1732428196156,"stop":1732428196156,"duration":0}},{"uid":"9f7fc4731241a976","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"cd298347a8b67e93","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"135e62f837ca5fe30ddfd2ad875e089b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ad642268f112be60","status":"passed","time":{"start":1733030100695,"stop":1733030100695,"duration":0}},{"uid":"28a9bedc22c54787","status":"passed","time":{"start":1732764220741,"stop":1732764220741,"duration":0}},{"uid":"8215947106021b54","status":"passed","time":{"start":1732428196022,"stop":1732428196022,"duration":0}},{"uid":"49aa5cc4276ca55b","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}},{"uid":"281344c06cab651e","status":"passed","time":{"start":1724735129305,"stop":1724735129305,"duration":0}}]},"dbfdd0ff8a8cc0d1cb832a52d018d2c3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"555f2ae99e88223f","status":"passed","time":{"start":1596047924247,"stop":1596047924248,"duration":1}},{"uid":"7d3c6e86d66150b0","status":"passed","time":{"start":1596005124356,"stop":1596005124357,"duration":1}},{"uid":"f7859e15b1d88cf5","status":"passed","time":{"start":1594531289180,"stop":1594531289181,"duration":1}},{"uid":"2c2254bee94df466","status":"passed","time":{"start":1594163434684,"stop":1594163434684,"duration":0}},{"uid":"1eb6c29de159ceb7","status":"passed","time":{"start":1594163041073,"stop":1594163041073,"duration":0}}]},"3b3f116ec3ac1abf551a51811b4a8900":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f807c10786110eac","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0}},{"uid":"98e0aca6e090522b","status":"passed","time":{"start":1732764220933,"stop":1732764220933,"duration":0}},{"uid":"405cf642fa0cf7c1","status":"passed","time":{"start":1732428196163,"stop":1732428196163,"duration":0}},{"uid":"83105e24306c53ac","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}},{"uid":"7cef5a6f9a11a927","status":"passed","time":{"start":1724735129446,"stop":1724735129446,"duration":0}}]},"4a5a43052562dd414ee61f42d2c7c5ec":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7fca6145e90132ab","status":"passed","time":{"start":1596047923938,"stop":1596047923939,"duration":1}},{"uid":"36a3256a0670b06b","status":"passed","time":{"start":1596005123985,"stop":1596005123987,"duration":2}},{"uid":"7fe50fe13c5982b7","status":"passed","time":{"start":1594531288869,"stop":1594531288870,"duration":1}},{"uid":"21939bc32d9b9076","status":"passed","time":{"start":1594163434355,"stop":1594163434357,"duration":2}},{"uid":"91dce38bf470986f","status":"passed","time":{"start":1594163040754,"stop":1594163040754,"duration":0}}]},"49ea03f1d04a92057a336da49714852c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"eb8f6057b9598daa","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0}},{"uid":"162a4f2fa010c721","status":"passed","time":{"start":1732764220792,"stop":1732764220793,"duration":1}},{"uid":"ff776776c9a8991f","status":"passed","time":{"start":1732428196064,"stop":1732428196065,"duration":1}},{"uid":"e1471afe863c97c8","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"380e12b965b39180","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"92a6b9b00e546e915443c0211e09039f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"875ea8f4a3a48bc5","status":"passed","time":{"start":1596047924440,"stop":1596047924441,"duration":1}},{"uid":"c174b7271b942905","status":"passed","time":{"start":1596005124544,"stop":1596005124545,"duration":1}},{"uid":"a6e4ed2e92f7ef3e","status":"passed","time":{"start":1594531289398,"stop":1594531289399,"duration":1}},{"uid":"e0c3556ba8b40144","status":"passed","time":{"start":1594163434860,"stop":1594163434861,"duration":1}},{"uid":"661d7decec1fb7ac","status":"passed","time":{"start":1594163041250,"stop":1594163041253,"duration":3}}]},"9b47b9a348154b928806f22a25ae3898":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"271246de29c45f75","status":"passed","time":{"start":1596047923528,"stop":1596047923530,"duration":2}},{"uid":"a825cb078a9ced4d","status":"passed","time":{"start":1596005123544,"stop":1596005123545,"duration":1}},{"uid":"ecdb8281b6e9ef0","status":"passed","time":{"start":1594531288459,"stop":1594531288460,"duration":1}},{"uid":"67eba59140f32f8e","status":"passed","time":{"start":1594163433918,"stop":1594163433920,"duration":2}},{"uid":"a88af5080fb72dc5","status":"passed","time":{"start":1594163040411,"stop":1594163040412,"duration":1}}]},"ea802d18b118f621c35bcaf8644d85ff":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"6c1e65f294db5f89","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098911,"stop":1733030098911,"duration":0}},{"uid":"bdd8b1b0bd82d5b1","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218838,"stop":1732764218838,"duration":0}},{"uid":"a57a3497f4402b67","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194185,"stop":1732428194185,"duration":0}},{"uid":"d6d51bdb700f78e3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}},{"uid":"ad08cb0fb6eef203","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127469,"stop":1724735127469,"duration":0}}]},"ab77fbd355109755607b6e3c87a6be3f":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"1bd7db8399d4c89c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919100,"stop":1596047919100,"duration":0}},{"uid":"acb90d2bb2f76e73","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119165,"stop":1596005119165,"duration":0}},{"uid":"86f81415c55842e0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284055,"stop":1594531284055,"duration":0}},{"uid":"906beb5475a53f82","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429626,"stop":1594163429626,"duration":0}},{"uid":"353d2333be3e9c41","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035789,"stop":1594163035789,"duration":0}}]},"83e4e6be114ce08accb7c97a7d1dbc25":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":32,"unknown":0,"total":32},"items":[{"uid":"6981e4a9cd7725ad","status":"passed","time":{"start":1596047923358,"stop":1596047923361,"duration":3}},{"uid":"681a551f5e814022","status":"passed","time":{"start":1596005123364,"stop":1596005123370,"duration":6}},{"uid":"f86bed52bda14f7f","status":"passed","time":{"start":1594531288276,"stop":1594531288278,"duration":2}},{"uid":"2e22ab44b6d35842","status":"passed","time":{"start":1594163433798,"stop":1594163433799,"duration":1}},{"uid":"9350cea19614044c","status":"passed","time":{"start":1594163040281,"stop":1594163040282,"duration":1}}]},"72efc7215c109ad8d2ead7421a0e93d7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"236a3a1194c17ffc","status":"passed","time":{"start":1596047923989,"stop":1596047923990,"duration":1}},{"uid":"b7b9c4a536e61701","status":"passed","time":{"start":1596005124075,"stop":1596005124076,"duration":1}},{"uid":"7f581f67ae5cf439","status":"passed","time":{"start":1594531288926,"stop":1594531288930,"duration":4}},{"uid":"65c627440da53fe0","status":"passed","time":{"start":1594163434420,"stop":1594163434421,"duration":1}},{"uid":"8c97e5d5ef7c6cf1","status":"passed","time":{"start":1594163040804,"stop":1594163040808,"duration":4}}]},"8a1027b0cee356a496b84c6b832d107b":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":3,"unknown":0,"total":5},"items":[{"uid":"eb94d03877c16bb4","status":"passed","time":{"start":1733030098661,"stop":1733030098661,"duration":0}},{"uid":"4b2984e4fa36f94","status":"passed","time":{"start":1732764218574,"stop":1732764218575,"duration":1}},{"uid":"413fd3063d3e7dc4","status":"passed","time":{"start":1732428193933,"stop":1732428193934,"duration":1}},{"uid":"ee4f0501c1152713","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}},{"uid":"3edaeb1c9114b312","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127188,"stop":1724735127188,"duration":0}}]},"5f67db9e62ff366c91cf9e618b2ccbe9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a99c454398f1512b","status":"passed","time":{"start":1596047920594,"stop":1596047920596,"duration":2}},{"uid":"2d1e96ae15c79dd1","status":"passed","time":{"start":1596005120491,"stop":1596005120493,"duration":2}},{"uid":"8029aeff17b58c48","status":"passed","time":{"start":1594531285430,"stop":1594531285431,"duration":1}},{"uid":"2b46a9d31d8a4cb8","status":"passed","time":{"start":1594163430895,"stop":1594163430897,"duration":2}},{"uid":"c5105828d947951e","status":"passed","time":{"start":1594163037141,"stop":1594163037143,"duration":2}}]},"0462123913893ea85af1447412b7733e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"4990a9f9fb7d9809","status":"passed","time":{"start":1733030100742,"stop":1733030100757,"duration":15}}]},"bd0f38e5388cf4a636a9393d435770b8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b0395834a1dc7266","status":"passed","time":{"start":1733030100387,"stop":1733030100403,"duration":16}},{"uid":"1857a7ece8075aa5","status":"passed","time":{"start":1732764220424,"stop":1732764220424,"duration":0}},{"uid":"fbd37fe4a302b125","status":"passed","time":{"start":1732428195732,"stop":1732428195733,"duration":1}},{"uid":"490cf50ddd5cff83","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}},{"uid":"7f4f9e94ec6d4f1e","status":"passed","time":{"start":1724735129008,"stop":1724735129024,"duration":16}}]},"c060fb3e36725c887b4b4edce83f7142":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d2acdc5e027859f4","status":"passed","time":{"start":1733030099270,"stop":1733030099270,"duration":0}},{"uid":"300c045916564a1","status":"passed","time":{"start":1732764219222,"stop":1732764219222,"duration":0}},{"uid":"43e7aaf3ed9f3ed0","status":"passed","time":{"start":1732428194543,"stop":1732428194543,"duration":0}},{"uid":"31b67858aaa81503","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}},{"uid":"74afb414b6e0cabc","status":"passed","time":{"start":1724735127938,"stop":1724735127938,"duration":0}}]},"44ae966390833a332245c1886323c559":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c8c57e21dd6fea81","status":"passed","time":{"start":1733030100914,"stop":1733030100914,"duration":0}},{"uid":"1b57aafe4439b9a8","status":"passed","time":{"start":1732764221009,"stop":1732764221011,"duration":2}},{"uid":"877a76cbb202d7b3","status":"passed","time":{"start":1732428196224,"stop":1732428196224,"duration":0}},{"uid":"b6301a55868859d","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}},{"uid":"c8a6a3e5884b319c","status":"passed","time":{"start":1724735129508,"stop":1724735129508,"duration":0}}]},"f3667cd9a93528eccefa1ce200cedfa2":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"67535419d885cbd9","status":"passed","time":{"start":1733030099380,"stop":1733030099380,"duration":0}},{"uid":"ea77ab4395e92566","status":"passed","time":{"start":1732764219343,"stop":1732764219344,"duration":1}},{"uid":"1532fae746d0bb3a","status":"passed","time":{"start":1732428194667,"stop":1732428194668,"duration":1}},{"uid":"2c78d4954ac14f9e","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}},{"uid":"93b3042e12ae0dc2","status":"passed","time":{"start":1724735128063,"stop":1724735128063,"duration":0}}]},"ae9f1c7144f190a45c9004337fcb4653":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2402f0c3d40dfcda","status":"passed","time":{"start":1596047924104,"stop":1596047924105,"duration":1}},{"uid":"4c9eb72a21facf1b","status":"passed","time":{"start":1596005124198,"stop":1596005124200,"duration":2}},{"uid":"e291eebf54e3fc3c","status":"passed","time":{"start":1594531289039,"stop":1594531289039,"duration":0}},{"uid":"a9b17872acf68bc1","status":"passed","time":{"start":1594163434541,"stop":1594163434543,"duration":2}},{"uid":"bca6f945f3b8d648","status":"passed","time":{"start":1594163040929,"stop":1594163040930,"duration":1}}]},"cf898711b7f774f53cf0bc1d40cbb323":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"213536a8a5597e91","status":"passed","time":{"start":1733030099208,"stop":1733030099208,"duration":0}},{"uid":"9e017ac7fdaf6bf5","status":"passed","time":{"start":1732764219166,"stop":1732764219166,"duration":0}},{"uid":"d7d1e3c0f9370311","status":"passed","time":{"start":1732428194496,"stop":1732428194496,"duration":0}}]},"091766acae8ef4d7d5217aaea368a8e4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5c39f637c5c8533","status":"passed","time":{"start":1596047924561,"stop":1596047924562,"duration":1}},{"uid":"8249f8668b73d087","status":"passed","time":{"start":1596005124671,"stop":1596005124672,"duration":1}},{"uid":"8bba272cb3a2ae39","status":"passed","time":{"start":1594531289549,"stop":1594531289550,"duration":1}},{"uid":"5634be4598e9e785","status":"passed","time":{"start":1594163434982,"stop":1594163434983,"duration":1}},{"uid":"b57f29a037978a24","status":"passed","time":{"start":1594163041381,"stop":1594163041381,"duration":0}}]},"64d02b3be7358667808060e04863e8f8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"14c26803c1139e78","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0}},{"uid":"bd65eae3991d6c2c","status":"passed","time":{"start":1732764220896,"stop":1732764220898,"duration":2}},{"uid":"27d124696efa8c6c","status":"passed","time":{"start":1732428196144,"stop":1732428196144,"duration":0}},{"uid":"e0d5281d75a0b4df","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}},{"uid":"a7151a5672bbc2f6","status":"passed","time":{"start":1724735129430,"stop":1724735129430,"duration":0}}]},"6cf6bc56f20bd3700d55931d5e6413d6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"51e6bd427dc9b9c1","status":"passed","time":{"start":1596047924589,"stop":1596047924590,"duration":1}},{"uid":"1e886ff47a6f71fb","status":"passed","time":{"start":1596005124699,"stop":1596005124701,"duration":2}},{"uid":"57349c34d0e422cc","status":"passed","time":{"start":1594531289583,"stop":1594531289584,"duration":1}},{"uid":"95225c8fac45fd6e","status":"passed","time":{"start":1594163435009,"stop":1594163435011,"duration":2}},{"uid":"2a6f34d3052b3359","status":"passed","time":{"start":1594163041414,"stop":1594163041416,"duration":2}}]},"8bd060c53cf4d8d2cbc13d7ab631b0a5":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"d6e0161287e241bc","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047920230,"stop":1596047920230,"duration":0}},{"uid":"65b32be554e4d48d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005120139,"stop":1596005120139,"duration":0}},{"uid":"99e543001489d328","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531285098,"stop":1594531285098,"duration":0}},{"uid":"85c8494aca63d8f3","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430593,"stop":1594163430593,"duration":0}},{"uid":"fa7fd4c7f9517277","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036810,"stop":1594163036810,"duration":0}}]},"cb77631a44bdd00f9fa7fbe845b21048":{"statistic":{"failed":0,"broken":0,"skipped":5,"passed":0,"unknown":0,"total":5},"items":[{"uid":"7ea8a8dc382128a4","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1733030098989,"stop":1733030098989,"duration":0}},{"uid":"9164bf2c06bf8752","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732764218915,"stop":1732764218915,"duration":0}},{"uid":"c58cb7ae6e5a9993","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1732428194259,"stop":1732428194259,"duration":0}},{"uid":"c37dfc82a096ec09","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}},{"uid":"257a5ad111bd69a7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127656,"stop":1724735127656,"duration":0}}]},"e4b3b27b629bbd5f25abab144f66de37":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"19443f8320b2694c","status":"passed","time":{"start":1733030099192,"stop":1733030099192,"duration":0}},{"uid":"14829aa4ce177c0a","status":"passed","time":{"start":1732764219145,"stop":1732764219145,"duration":0}},{"uid":"c7c4b4c39dca1f7a","status":"passed","time":{"start":1732428194471,"stop":1732428194471,"duration":0}},{"uid":"42bb8c96d4cb1bcf","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}},{"uid":"41a3f66c1c393960","status":"passed","time":{"start":1724735127860,"stop":1724735127860,"duration":0}}]},"e4c0a34580af7574c8114f42e844d6e6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5e5e1beb42c655c1","status":"passed","time":{"start":1596047920292,"stop":1596047920293,"duration":1}},{"uid":"25865dd9141414f8","status":"passed","time":{"start":1596005120187,"stop":1596005120189,"duration":2}},{"uid":"11e51199614ecf30","status":"passed","time":{"start":1594531285157,"stop":1594531285158,"duration":1}},{"uid":"34bf94971c8706dc","status":"passed","time":{"start":1594163430639,"stop":1594163430640,"duration":1}},{"uid":"a7b00650560407f0","status":"passed","time":{"start":1594163036860,"stop":1594163036861,"duration":1}}]},"470b5bb32c448e7433bb94b222d4d8b0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"cb005e45e7b312b5","status":"passed","time":{"start":1733030100789,"stop":1733030100789,"duration":0}},{"uid":"f30b225377e5683d","status":"passed","time":{"start":1732764220837,"stop":1732764220837,"duration":0}},{"uid":"a1a7aeb13172d1f0","status":"passed","time":{"start":1732428196092,"stop":1732428196092,"duration":0}},{"uid":"8451096f3488e82","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}},{"uid":"5653676293d9b683","status":"passed","time":{"start":1724735129367,"stop":1724735129383,"duration":16}}]},"67e76cdedfc887447f9bf949273eaa4d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"84bae0437fc355f7","status":"passed","time":{"start":1596047924008,"stop":1596047924008,"duration":0}},{"uid":"e3b526e7d3e1856f","status":"passed","time":{"start":1596005124093,"stop":1596005124097,"duration":4}},{"uid":"aadb57650165fea4","status":"passed","time":{"start":1594531288948,"stop":1594531288949,"duration":1}},{"uid":"d29636788f1b634e","status":"passed","time":{"start":1594163434440,"stop":1594163434441,"duration":1}},{"uid":"49840c49d3dc4df5","status":"passed","time":{"start":1594163040822,"stop":1594163040823,"duration":1}}]},"4da2baa3326fa793f3d63bc99d5f2feb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"eeb6d8003fb84da5","status":"passed","time":{"start":1596047923996,"stop":1596047923996,"duration":0}},{"uid":"dee07d028d4359df","status":"passed","time":{"start":1596005124082,"stop":1596005124084,"duration":2}},{"uid":"f89ec339e4a95a87","status":"passed","time":{"start":1594531288935,"stop":1594531288938,"duration":3}},{"uid":"a0afb57891278b5b","status":"passed","time":{"start":1594163434428,"stop":1594163434431,"duration":3}},{"uid":"fb4775500302c45c","status":"passed","time":{"start":1594163040812,"stop":1594163040814,"duration":2}}]},"9d8cb8adf1764c55348d349698b938ac":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c1f90fc4edd70bea","status":"passed","time":{"start":1733030098708,"stop":1733030098708,"duration":0}},{"uid":"641b1ee7248b1557","status":"passed","time":{"start":1732764218641,"stop":1732764218641,"duration":0}},{"uid":"5eca272b3b393557","status":"passed","time":{"start":1732428193992,"stop":1732428193993,"duration":1}},{"uid":"b01fd4e8d095b60f","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}},{"uid":"913459f449cde9ee","status":"passed","time":{"start":1724735127235,"stop":1724735127250,"duration":15}}]},"2972663ca9fa4b4f0e6ea69060a464d5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8146fd50051ac96b","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0}},{"uid":"9c39905963998c1b","status":"passed","time":{"start":1732764220432,"stop":1732764220432,"duration":0}},{"uid":"3b395c1683e127a4","status":"passed","time":{"start":1732428195740,"stop":1732428195740,"duration":0}},{"uid":"449aa1de0e8221e9","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"73a0aa79bef78acd","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"8d90ab9d48fe4a2c33ff1eb2c33878d3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5b936c33d7d2f489","status":"passed","time":{"start":1596047923855,"stop":1596047923856,"duration":1}},{"uid":"ebf3dedb3aef741d","status":"passed","time":{"start":1596005123886,"stop":1596005123889,"duration":3}},{"uid":"7e64dc674ec38de9","status":"passed","time":{"start":1594531288796,"stop":1594531288796,"duration":0}},{"uid":"e0732ac1b37ec7d4","status":"passed","time":{"start":1594163434261,"stop":1594163434262,"duration":1}},{"uid":"57e1cce81da32da5","status":"passed","time":{"start":1594163040681,"stop":1594163040682,"duration":1}}]},"195b2d3cd638502ec301b9e9eaa3f969":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"644c808df55456e9","status":"passed","time":{"start":1733030098677,"stop":1733030098677,"duration":0}},{"uid":"5e4416fd32f6992f","status":"passed","time":{"start":1732764218600,"stop":1732764218600,"duration":0}},{"uid":"9dd5714486b51753","status":"passed","time":{"start":1732428193959,"stop":1732428193959,"duration":0}},{"uid":"8a76fd0002a5824c","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}},{"uid":"3fa15071b1bee987","status":"passed","time":{"start":1724735127203,"stop":1724735127203,"duration":0}}]},"69989f42d0aa6f9c7ee0436ecdc6c290":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"9893e03e2d09df18","status":"passed","time":{"start":1596047923270,"stop":1596047923271,"duration":1}},{"uid":"2fc2e58de5a69c5d","status":"passed","time":{"start":1596005123269,"stop":1596005123270,"duration":1}},{"uid":"88a8d546bb766c02","status":"passed","time":{"start":1594531288199,"stop":1594531288199,"duration":0}},{"uid":"a29569319979bca5","status":"passed","time":{"start":1594163433728,"stop":1594163433729,"duration":1}},{"uid":"fd86a8a1610770d","status":"passed","time":{"start":1594163040196,"stop":1594163040196,"duration":0}}]},"15037a348eb4a5d132a73e93b09318c1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3ff093181cede851","status":"passed","time":{"start":1733030099395,"stop":1733030099395,"duration":0}},{"uid":"c0a4502fedd41667","status":"passed","time":{"start":1732764219357,"stop":1732764219358,"duration":1}},{"uid":"239a317b6e090fd8","status":"passed","time":{"start":1732428194678,"stop":1732428194679,"duration":1}},{"uid":"51a9aec46de8d878","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}},{"uid":"43c0068fe0a1265e","status":"passed","time":{"start":1724735128063,"stop":1724735128078,"duration":15}}]},"cf653f8242d11085d4f622153d7fc159":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"aad04f1b5e9e39d8","status":"passed","time":{"start":1596047919157,"stop":1596047919159,"duration":2}},{"uid":"aec880411ba0cddb","status":"passed","time":{"start":1596005119208,"stop":1596005119210,"duration":2}},{"uid":"f44701d39c934482","status":"passed","time":{"start":1594531284111,"stop":1594531284114,"duration":3}},{"uid":"d23a0aa1acfb0309","status":"passed","time":{"start":1594163429681,"stop":1594163429683,"duration":2}},{"uid":"4b12e90e7152418","status":"passed","time":{"start":1594163035855,"stop":1594163035858,"duration":3}}]},"d078abbf63387d06892c04835cc6719c":{"statistic":{"failed":0,"broken":0,"skipped":2,"passed":3,"unknown":0,"total":5},"items":[{"uid":"a81b8ca7a7877717","status":"passed","time":{"start":1733030098646,"stop":1733030098646,"duration":0}},{"uid":"3e564e38813f1539","status":"passed","time":{"start":1732764218569,"stop":1732764218569,"duration":0}},{"uid":"a76c277b6c0b5940","status":"passed","time":{"start":1732428193927,"stop":1732428193927,"duration":0}},{"uid":"801bdccb4e1aa824","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}},{"uid":"92b17e5074e54ef7","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1724735127172,"stop":1724735127172,"duration":0}}]},"847eae3e1eaee14f2fe40f1a6251d837":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a793b5f0c92cfefb","status":"passed","time":{"start":1596047924697,"stop":1596047924698,"duration":1}},{"uid":"cc8e4fdbc96d5f1e","status":"passed","time":{"start":1596005124848,"stop":1596005124849,"duration":1}},{"uid":"ae3f139eeecbbc7c","status":"passed","time":{"start":1594531289719,"stop":1594531289720,"duration":1}},{"uid":"78455020eac60038","status":"passed","time":{"start":1594163435120,"stop":1594163435120,"duration":0}},{"uid":"33a5bcb67bf1128b","status":"passed","time":{"start":1594163041534,"stop":1594163041535,"duration":1}}]},"861b34050c3ab0a994fa20a6090c5ab5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c8680b20dd7e19d5","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0}},{"uid":"13f340b5f893b4e2","status":"passed","time":{"start":1732764220797,"stop":1732764220798,"duration":1}},{"uid":"3c3a8d947ad77b59","status":"passed","time":{"start":1732428196069,"stop":1732428196070,"duration":1}},{"uid":"14d00f76e0b4f9e4","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"8a85b974bace8b60","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"ea1dc0619bd3a02faaa893bbdd2df9e7":{"statistic":{"failed":0,"broken":0,"skipped":18,"passed":0,"unknown":0,"total":18},"items":[{"uid":"7108cc4142c0c8c8","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919074,"stop":1596047919074,"duration":0}},{"uid":"91ce4192ad2da718","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119138,"stop":1596005119138,"duration":0}},{"uid":"15cc6d567c304f3f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284033,"stop":1594531284033,"duration":0}},{"uid":"481ef7e1047b51d0","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429605,"stop":1594163429605,"duration":0}},{"uid":"9d2714a9aee9df10","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035766,"stop":1594163035766,"duration":0}}]},"bf296228b1ce2e9fc09084809d398b51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"80bc6ed2cc3578ad","status":"passed","time":{"start":1596047923810,"stop":1596047923813,"duration":3}},{"uid":"9517d3f64f24c32","status":"passed","time":{"start":1596005123842,"stop":1596005123843,"duration":1}},{"uid":"76e860f488125145","status":"passed","time":{"start":1594531288754,"stop":1594531288755,"duration":1}},{"uid":"9ca8e9f11c9caba7","status":"passed","time":{"start":1594163434212,"stop":1594163434213,"duration":1}},{"uid":"66089a255bd64e1e","status":"passed","time":{"start":1594163040644,"stop":1594163040645,"duration":1}}]},"80a58f5ac07043f8cb09293ce5f7bffb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"183bb0973dd8dfca","status":"passed","time":{"start":1596047923682,"stop":1596047923689,"duration":7}},{"uid":"eac7f9f5b72d1287","status":"passed","time":{"start":1596005123710,"stop":1596005123714,"duration":4}},{"uid":"21f37b2069290553","status":"passed","time":{"start":1594531288623,"stop":1594531288624,"duration":1}},{"uid":"469228ea8ecae58a","status":"passed","time":{"start":1594163434064,"stop":1594163434065,"duration":1}},{"uid":"81cb1cf8eaa06e42","status":"passed","time":{"start":1594163040541,"stop":1594163040541,"duration":0}}]},"f9c1f10fe995fd827dbc67efd6c689cb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8a0604fc927a7480","status":"passed","time":{"start":1733030100867,"stop":1733030100867,"duration":0}},{"uid":"4736c243443acbf6","status":"passed","time":{"start":1732764220941,"stop":1732764220941,"duration":0}},{"uid":"1aaf298f74019608","status":"passed","time":{"start":1732428196168,"stop":1732428196168,"duration":0}},{"uid":"d0862b5213f7938f","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}},{"uid":"53d75ff9d73daf75","status":"passed","time":{"start":1724735129461,"stop":1724735129461,"duration":0}}]},"6b98c62ee1b1f8e766b65263444ad2e5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"af16ce1f4d774662","status":"passed","time":{"start":1733030100528,"stop":1733030100528,"duration":0}},{"uid":"30977e1fdeed6f0a","status":"passed","time":{"start":1732764220552,"stop":1732764220552,"duration":0}},{"uid":"2c6c8c712bf1892f","status":"passed","time":{"start":1732428195861,"stop":1732428195861,"duration":0}},{"uid":"cd862d92408a60a2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}},{"uid":"3bd61bc704b417e2","status":"passed","time":{"start":1724735129149,"stop":1724735129149,"duration":0}}]},"47e8749fb79b5ff765dc32c3b5efb2a3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3f3a4afa0166112e","status":"passed","time":{"start":1733030101132,"stop":1733030101132,"duration":0}},{"uid":"7c6af0e0a129f035","status":"passed","time":{"start":1732764221316,"stop":1732764221316,"duration":0}},{"uid":"b2705032891531e8","status":"passed","time":{"start":1732428196453,"stop":1732428196455,"duration":2}},{"uid":"afae2f3faef55f2b","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}},{"uid":"627a7fd2fe38a284","status":"passed","time":{"start":1724735129742,"stop":1724735129742,"duration":0}}]},"62aa9278ac9540d2bc76e527211fbc5d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fbf35f199f9a64a4","status":"passed","time":{"start":1596047924028,"stop":1596047924028,"duration":0}},{"uid":"60485e92c3c7cb1a","status":"passed","time":{"start":1596005124118,"stop":1596005124121,"duration":3}},{"uid":"bd8489581d061430","status":"passed","time":{"start":1594531288968,"stop":1594531288969,"duration":1}},{"uid":"6b256f129d4dfea1","status":"passed","time":{"start":1594163434463,"stop":1594163434464,"duration":1}},{"uid":"d78c3deb4a1879b0","status":"passed","time":{"start":1594163040842,"stop":1594163040843,"duration":1}}]},"ff2324e4a058a6c42486fd5aff532ecf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"3f2e19b818fd15f5","status":"passed","time":{"start":1733030099239,"stop":1733030099239,"duration":0}},{"uid":"3de1512f067d459d","status":"passed","time":{"start":1732764219193,"stop":1732764219193,"duration":0}},{"uid":"9b5127c91b9deeb6","status":"passed","time":{"start":1732428194518,"stop":1732428194518,"duration":0}},{"uid":"14d24a2946d66b00","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}},{"uid":"e943739be0c776f3","status":"passed","time":{"start":1724735127906,"stop":1724735127906,"duration":0}}]},"802d65ed2f6258aa6cc2b85b4a959181":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ddff492ae54ba3da","status":"passed","time":{"start":1596047924069,"stop":1596047924071,"duration":2}},{"uid":"dd1dc78a28c68e2","status":"passed","time":{"start":1596005124167,"stop":1596005124169,"duration":2}},{"uid":"6be4617795b8f0aa","status":"passed","time":{"start":1594531289006,"stop":1594531289007,"duration":1}},{"uid":"3b8738a1c9b34f0a","status":"passed","time":{"start":1594163434510,"stop":1594163434512,"duration":2}},{"uid":"e9621ce69e2a0fe7","status":"passed","time":{"start":1594163040901,"stop":1594163040902,"duration":1}}]},"f15e0a8d64d59bf97fc275c012d369a8":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":13,"unknown":0,"total":13},"items":[{"uid":"b43ceb7c6c1bfc99","status":"passed","time":{"start":1596047923237,"stop":1596047923239,"duration":2}},{"uid":"6441d97d54900ce2","status":"passed","time":{"start":1596005123228,"stop":1596005123231,"duration":3}},{"uid":"7e6fc7dd695808f1","status":"passed","time":{"start":1594531288165,"stop":1594531288167,"duration":2}},{"uid":"75ea1f6cfaeb3ec1","status":"passed","time":{"start":1594163433694,"stop":1594163433695,"duration":1}},{"uid":"e8a3069c57d5ea4d","status":"passed","time":{"start":1594163040162,"stop":1594163040163,"duration":1}}]},"f1e3ad74179a106b1d5dc35a6ffe21fa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"777b1d9b55eb3ae9","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0}},{"uid":"54fbe05c675f404a","status":"passed","time":{"start":1732764220163,"stop":1732764220164,"duration":1}},{"uid":"12f0442ef33f054e","status":"passed","time":{"start":1732428195473,"stop":1732428195473,"duration":0}},{"uid":"e9aaea22e808b4eb","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}},{"uid":"a0cc441d7d4eb4dd","status":"passed","time":{"start":1724735128774,"stop":1724735128774,"duration":0}}]},"b4a1fa278aa899a374ebad09960e6cca":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2c379ae83853bb2a","status":"passed","time":{"start":1733030101117,"stop":1733030101117,"duration":0}},{"uid":"aa37770dd2142a16","status":"passed","time":{"start":1732764221293,"stop":1732764221294,"duration":1}},{"uid":"5c0b01ada3a3f14e","status":"passed","time":{"start":1732428196430,"stop":1732428196430,"duration":0}},{"uid":"d5a389260d41a743","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}},{"uid":"5329936079819472","status":"passed","time":{"start":1724735129711,"stop":1724735129711,"duration":0}}]},"a5611fb8b1fb5387feefaa5aa15546b6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"96778896ddc1a14","status":"passed","time":{"start":1596047924313,"stop":1596047924314,"duration":1}},{"uid":"495e06b95580bb04","status":"passed","time":{"start":1596005124410,"stop":1596005124410,"duration":0}},{"uid":"eeb8315e0f5ac4a9","status":"passed","time":{"start":1594531289252,"stop":1594531289253,"duration":1}},{"uid":"732ef79c632297da","status":"passed","time":{"start":1594163434740,"stop":1594163434741,"duration":1}},{"uid":"92f293ea5632a78","status":"passed","time":{"start":1594163041129,"stop":1594163041130,"duration":1}}]},"2e5f294dd8fbb4489c95b8783fb8e9af":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c9c9a6a75f3a249f","status":"passed","time":{"start":1733030099333,"stop":1733030099333,"duration":0}},{"uid":"64abc8899e8e691d","status":"passed","time":{"start":1732764219297,"stop":1732764219297,"duration":0}},{"uid":"34a84f898de954b5","status":"passed","time":{"start":1732428194619,"stop":1732428194619,"duration":0}},{"uid":"de04793abb90de01","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}},{"uid":"3d3e842542b066f3","status":"passed","time":{"start":1724735128016,"stop":1724735128016,"duration":0}}]},"78738f3890470aa4546f32d34629209e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a72ca4497dcb2e3c","status":"passed","time":{"start":1596047924409,"stop":1596047924409,"duration":0}},{"uid":"b3712c3bd4149217","status":"passed","time":{"start":1596005124512,"stop":1596005124512,"duration":0}},{"uid":"89903405c1ec72eb","status":"passed","time":{"start":1594531289355,"stop":1594531289355,"duration":0}},{"uid":"1dcc854c9242537d","status":"passed","time":{"start":1594163434830,"stop":1594163434830,"duration":0}},{"uid":"26db51b612392c3f","status":"passed","time":{"start":1594163041219,"stop":1594163041220,"duration":1}}]},"fa07af113ba280dc5a89690a520b3897":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"157d23c0aff9e075","status":"passed","time":{"start":1733030099411,"stop":1733030099411,"duration":0}},{"uid":"d1bc6da1a117f865","status":"passed","time":{"start":1732764219378,"stop":1732764219378,"duration":0}},{"uid":"62141a9b45e036f9","status":"passed","time":{"start":1732428194698,"stop":1732428194698,"duration":0}},{"uid":"2b7f0b03733442e8","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}},{"uid":"a8ada246e9141e4e","status":"passed","time":{"start":1724735128094,"stop":1724735128094,"duration":0}}]},"89ee625343ed07ab852f830d9cc358b3":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ce6714fc18aff8ec","status":"passed","time":{"start":1733030100976,"stop":1733030100976,"duration":0}},{"uid":"b02a54a0a8bd8284","status":"passed","time":{"start":1732764221093,"stop":1732764221093,"duration":0}},{"uid":"6c70ddf45fea2887","status":"passed","time":{"start":1732428196287,"stop":1732428196289,"duration":2}},{"uid":"1073662453fffbc9","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}},{"uid":"cbc7a26721b4acfd","status":"passed","time":{"start":1724735129570,"stop":1724735129570,"duration":0}}]},"befc81f16d3ea9a4d57ecd3fed78faff":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f5898a8468d0cd4","status":"passed","time":{"start":1733030100137,"stop":1733030100137,"duration":0}},{"uid":"60d4140245a65d5","status":"passed","time":{"start":1732764220167,"stop":1732764220168,"duration":1}},{"uid":"5ffc43ce0a9f46c9","status":"passed","time":{"start":1732428195479,"stop":1732428195479,"duration":0}},{"uid":"d946600dafcc1f6d","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"e885db3276511b9a","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"c3fa919d9e9cedcce6b3981f2bc7fb4d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8e2fffa4a498dc46","status":"passed","time":{"start":1596047924724,"stop":1596047924725,"duration":1}},{"uid":"57fb6ddd9f1a4eb","status":"passed","time":{"start":1596005124888,"stop":1596005124890,"duration":2}},{"uid":"8c6819ed9030c76c","status":"passed","time":{"start":1594531289755,"stop":1594531289756,"duration":1}},{"uid":"5298ab701e56bc0b","status":"passed","time":{"start":1594163435146,"stop":1594163435147,"duration":1}},{"uid":"225535eb601fe961","status":"passed","time":{"start":1594163041567,"stop":1594163041568,"duration":1}}]},"02fc92d14c7d50d331938e8b8f33dc51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"63786de17daf93c4","status":"passed","time":{"start":1596047923495,"stop":1596047923497,"duration":2}},{"uid":"86e02bb74d59f2ad","status":"passed","time":{"start":1596005123508,"stop":1596005123513,"duration":5}},{"uid":"775f3ca2d510a8de","status":"passed","time":{"start":1594531288414,"stop":1594531288420,"duration":6}},{"uid":"25706472b9e9d3d7","status":"passed","time":{"start":1594163433894,"stop":1594163433895,"duration":1}},{"uid":"26e78ff02ec11a94","status":"passed","time":{"start":1594163040381,"stop":1594163040382,"duration":1}}]},"337f8da3fccb836acfa7a9f697d95259":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7fd83f8828bfb391","status":"passed","time":{"start":1733030100372,"stop":1733030100372,"duration":0}},{"uid":"8a89827c471bc909","status":"passed","time":{"start":1732764220409,"stop":1732764220410,"duration":1}},{"uid":"898b5d5677e24adf","status":"passed","time":{"start":1732428195716,"stop":1732428195716,"duration":0}},{"uid":"ee325afc05dcb3e8","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}},{"uid":"91e3c1348f0cd9d2","status":"passed","time":{"start":1724735128992,"stop":1724735128992,"duration":0}}]},"b91c13716f440f33b1f90d86b217b534":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c1326d9a3ad9ddfb","status":"passed","time":{"start":1733030100294,"stop":1733030100294,"duration":0}},{"uid":"5ff3f93ff1ffe8b3","status":"passed","time":{"start":1732764220321,"stop":1732764220321,"duration":0}},{"uid":"3ae9a46b9a1e7c40","status":"passed","time":{"start":1732428195641,"stop":1732428195641,"duration":0}},{"uid":"98200e3d5ae32ca","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}},{"uid":"5ecfe278b9d03b10","status":"passed","time":{"start":1724735128930,"stop":1724735128930,"duration":0}}]},"be7068cb1056118b9c0776b1d187601d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"96938210802b960f","status":"passed","time":{"start":1733030100419,"stop":1733030100419,"duration":0}},{"uid":"732b9dd805d734b8","status":"passed","time":{"start":1732764220449,"stop":1732764220452,"duration":3}},{"uid":"3ffa72675847f113","status":"passed","time":{"start":1732428195758,"stop":1732428195759,"duration":1}},{"uid":"7e0d94f0ee4e397d","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}},{"uid":"2d65aaadaa20d5c2","status":"passed","time":{"start":1724735129039,"stop":1724735129039,"duration":0}}]},"445e559483f8b14171f0e5184823cfdf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2b001b82a9a44fca","status":"passed","time":{"start":1596047920533,"stop":1596047920534,"duration":1}},{"uid":"3b11e07e13d3ceb7","status":"passed","time":{"start":1596005120428,"stop":1596005120429,"duration":1}},{"uid":"4ed0517c8323de09","status":"passed","time":{"start":1594531285376,"stop":1594531285377,"duration":1}},{"uid":"b8ca1a91a6c5803b","status":"passed","time":{"start":1594163430825,"stop":1594163430826,"duration":1}},{"uid":"64f9fd9b4a45eb45","status":"passed","time":{"start":1594163037078,"stop":1594163037079,"duration":1}}]},"9c2d30046a2fe35ee19c9d3833ea20a5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"cbb9443875889585","status":"passed","time":{"start":1733030100387,"stop":1733030100387,"duration":0}},{"uid":"ba71f124345447fc","status":"passed","time":{"start":1732764220417,"stop":1732764220418,"duration":1}},{"uid":"dc1c20798f5a8f0a","status":"passed","time":{"start":1732428195724,"stop":1732428195724,"duration":0}},{"uid":"fbd4191028146e80","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}},{"uid":"af6e405f57c78056","status":"passed","time":{"start":1724735129008,"stop":1724735129008,"duration":0}}]},"98b6e3d99f8af220f04f374312a4567e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"27df99bd6f3db0d4","status":"passed","time":{"start":1596047924627,"stop":1596047924629,"duration":2}},{"uid":"81831661c028f2ea","status":"passed","time":{"start":1596005124744,"stop":1596005124745,"duration":1}},{"uid":"cb54be6efed79fff","status":"passed","time":{"start":1594531289634,"stop":1594531289635,"duration":1}},{"uid":"7eaebb9c81694b46","status":"passed","time":{"start":1594163435049,"stop":1594163435050,"duration":1}},{"uid":"516fee30570bc7","status":"passed","time":{"start":1594163041463,"stop":1594163041464,"duration":1}}]},"c589035c90d432fb71a99aec4f56ee9e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5814d63d4b392228","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0}},{"uid":"6a636a909012a6f0","status":"passed","time":{"start":1732764221258,"stop":1732764221259,"duration":1}},{"uid":"2de3f7cf44554fd8","status":"passed","time":{"start":1732428196400,"stop":1732428196400,"duration":0}},{"uid":"9c38060cc376f686","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"6bb1a909958ad3a2","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"320d1103d3dbdf29707477fbd33340ef":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"157dfbcbd70e0ae8","status":"passed","time":{"start":1596047919990,"stop":1596047919991,"duration":1}},{"uid":"b455fe137a3ac9fb","status":"passed","time":{"start":1596005119940,"stop":1596005119943,"duration":3}},{"uid":"2abffff8463338b0","status":"passed","time":{"start":1594531284862,"stop":1594531284863,"duration":1}},{"uid":"5214983227835ef7","status":"passed","time":{"start":1594163430370,"stop":1594163430370,"duration":0}},{"uid":"bad12be2c8537603","status":"passed","time":{"start":1594163036592,"stop":1594163036593,"duration":1}}]},"4967a6ca0665c8eeeec85898f8bda8f5":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"564bcc936cf15d1a","status":"passed","time":{"start":1733030100945,"stop":1733030100945,"duration":0}},{"uid":"e532878179cb6f87","status":"passed","time":{"start":1732764221047,"stop":1732764221047,"duration":0}},{"uid":"b3db9caa12a5149e","status":"passed","time":{"start":1732428196258,"stop":1732428196258,"duration":0}},{"uid":"76f8c586f8a804f0","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}},{"uid":"69f91e5f44fcbcaa","status":"passed","time":{"start":1724735129539,"stop":1724735129539,"duration":0}}]},"7090b58c62fab362ad673c85c67765af":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"469fb46dbe1a31d","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0}},{"uid":"8bc712dc2d3a7199","status":"passed","time":{"start":1732764220247,"stop":1732764220248,"duration":1}},{"uid":"1c8c3b6600a20e75","status":"passed","time":{"start":1732428195568,"stop":1732428195568,"duration":0}},{"uid":"9098856200f13690","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f5b1db39220bbcf9","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"e6ec784c16dbc0c3ef86eee597ec6160":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"11716ef7fd4ed53d","status":"passed","time":{"start":1596047920245,"stop":1596047920268,"duration":23}},{"uid":"a66f38a212f65b6e","status":"passed","time":{"start":1596005120151,"stop":1596005120167,"duration":16}},{"uid":"399edc331d13ead4","status":"passed","time":{"start":1594531285109,"stop":1594531285129,"duration":20}},{"uid":"9ecdf538824b900c","status":"passed","time":{"start":1594163430602,"stop":1594163430620,"duration":18}},{"uid":"d8199a2f329d2aa5","status":"passed","time":{"start":1594163036821,"stop":1594163036842,"duration":21}}]},"90c584fb46bb23663538e65089b7ace1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6b1620d97187e590","status":"passed","time":{"start":1596047924228,"stop":1596047924229,"duration":1}},{"uid":"733ff9c26a4b1fad","status":"passed","time":{"start":1596005124333,"stop":1596005124334,"duration":1}},{"uid":"6ff69a4d99fed95a","status":"passed","time":{"start":1594531289161,"stop":1594531289162,"duration":1}},{"uid":"ed8a07931fcd3a31","status":"passed","time":{"start":1594163434662,"stop":1594163434663,"duration":1}},{"uid":"c9883eb8310818d0","status":"passed","time":{"start":1594163041052,"stop":1594163041053,"duration":1}}]},"700583de2d2c58034fc3c72a77e01563":{"statistic":{"failed":0,"broken":0,"skipped":12,"passed":0,"unknown":0,"total":12},"items":[{"uid":"f32fb152bb04b45b","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919951,"stop":1596047919951,"duration":0}},{"uid":"7ad83f43ff767020","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119912,"stop":1596005119912,"duration":0}},{"uid":"2668c65d993ecd04","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284816,"stop":1594531284816,"duration":0}},{"uid":"f9ba0ca6a1b6fd7e","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430340,"stop":1594163430340,"duration":0}},{"uid":"3265d141c7b60261","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036555,"stop":1594163036555,"duration":0}}]},"faf1054cf60e3f1fbb45c8dc0ece579f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"864ee426bf422b09","status":"passed","time":{"start":1733030100215,"stop":1733030100215,"duration":0}},{"uid":"c0b1085f1fbfd7ed","status":"passed","time":{"start":1732764220254,"stop":1732764220254,"duration":0}},{"uid":"a405e7d50def0411","status":"passed","time":{"start":1732428195573,"stop":1732428195574,"duration":1}},{"uid":"715edf62d220bc66","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}},{"uid":"f921307aa8b56caa","status":"passed","time":{"start":1724735128868,"stop":1724735128868,"duration":0}}]},"9f3faef7cd6efbe5a04de4e9c02ed5e1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"25c9ba69d5ac48c6","status":"passed","time":{"start":1733030100450,"stop":1733030100450,"duration":0}},{"uid":"82f0a19d19bd8125","status":"passed","time":{"start":1732764220486,"stop":1732764220486,"duration":0}},{"uid":"711928de75b599ba","status":"passed","time":{"start":1732428195795,"stop":1732428195795,"duration":0}},{"uid":"33b81b348332f41f","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}},{"uid":"1ef1cf7383671b63","status":"passed","time":{"start":1724735129086,"stop":1724735129086,"duration":0}}]},"6425b991e67c97a8570f57948faa913a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":17,"unknown":0,"total":17},"items":[{"uid":"32ad7b2308b9c0ee","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"8e066a7ae3ee527a","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"624a38ce5fbdaed5","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"6536c4d247ae7772","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}},{"uid":"f8a5214a59bb6280","status":"passed","time":{"start":1589770407102,"stop":1589770407105,"duration":3}}]},"18d36227a2f56662bc03f08e05241ec1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5238b22fc20ccda9","status":"passed","time":{"start":1733030100434,"stop":1733030100434,"duration":0}},{"uid":"324d19209fbeb70d","status":"passed","time":{"start":1732764220473,"stop":1732764220473,"duration":0}},{"uid":"28c03a6c5cc24cef","status":"passed","time":{"start":1732428195780,"stop":1732428195781,"duration":1}},{"uid":"2aa3a63b6fff605a","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}},{"uid":"fb3ce43e36479ba0","status":"passed","time":{"start":1724735129071,"stop":1724735129071,"duration":0}}]},"026739760bca73e921f8e5d35d9329cf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"218b156daee27f08","status":"passed","time":{"start":1733030100559,"stop":1733030100559,"duration":0}},{"uid":"addec93357f6e501","status":"passed","time":{"start":1732764220605,"stop":1732764220605,"duration":0}},{"uid":"e08b527d12d4e4df","status":"passed","time":{"start":1732428195906,"stop":1732428195906,"duration":0}},{"uid":"70085274c959a3cb","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}},{"uid":"a5e3b3442b4ab9dd","status":"passed","time":{"start":1724735129196,"stop":1724735129196,"duration":0}}]},"6630066bed88b9c8246478bc4b94ac73":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"28baf5593cc14310","status":"passed","time":{"start":1733030101101,"stop":1733030101101,"duration":0}},{"uid":"77ce7ba6af0b177a","status":"passed","time":{"start":1732764221276,"stop":1732764221276,"duration":0}},{"uid":"a10876da94fb2b4f","status":"passed","time":{"start":1732428196417,"stop":1732428196418,"duration":1}},{"uid":"6ea719d6e8a376fb","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}},{"uid":"564be6d750e08ee1","status":"passed","time":{"start":1724735129695,"stop":1724735129695,"duration":0}}]},"86ebf5759b2e03b8a14475bf2a646507":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"8ab92534c2f98c07","status":"passed","time":{"start":1596047924404,"stop":1596047924404,"duration":0}},{"uid":"d34c158a4d685d71","status":"passed","time":{"start":1596005124506,"stop":1596005124506,"duration":0}},{"uid":"40861c5dacb5fca3","status":"passed","time":{"start":1594531289350,"stop":1594531289350,"duration":0}},{"uid":"8c6d71965de2c6c9","status":"passed","time":{"start":1594163434824,"stop":1594163434824,"duration":0}},{"uid":"b0892f4acd1cdb63","status":"passed","time":{"start":1594163041212,"stop":1594163041213,"duration":1}}]},"0449fb5fc3350d141ce3afd8c69d0de1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d235af1bf67bd9f5","status":"passed","time":{"start":1596047924216,"stop":1596047924217,"duration":1}},{"uid":"b6cb53c08f9e510","status":"passed","time":{"start":1596005124322,"stop":1596005124323,"duration":1}},{"uid":"5d7ddf85737163d2","status":"passed","time":{"start":1594531289151,"stop":1594531289152,"duration":1}},{"uid":"2a2716834eb65a58","status":"passed","time":{"start":1594163434653,"stop":1594163434654,"duration":1}},{"uid":"8795d518278056cc","status":"passed","time":{"start":1594163041042,"stop":1594163041043,"duration":1}}]},"6c14cedc5a513765002a31220c677a3f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":2,"unknown":0,"total":2},"items":[{"uid":"e6b67890527d37e6","status":"passed","time":{"start":1733030100356,"stop":1733030100356,"duration":0}},{"uid":"5908d364b75f844e","status":"passed","time":{"start":1732764220383,"stop":1732764220385,"duration":2}}]},"c215cc1af921310dfc963d972f3081c1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":16,"unknown":0,"total":16},"items":[{"uid":"51b7688035f5973b","status":"passed","time":{"start":1596047919464,"stop":1596047919466,"duration":2}},{"uid":"a033b5485d9c243d","status":"passed","time":{"start":1596005119481,"stop":1596005119482,"duration":1}},{"uid":"ee0e93af9bfceef4","status":"passed","time":{"start":1594531284390,"stop":1594531284392,"duration":2}},{"uid":"c0ceb463efcdcca5","status":"passed","time":{"start":1594163429945,"stop":1594163429947,"duration":2}},{"uid":"bb3b3a0de11e6785","status":"passed","time":{"start":1594163036139,"stop":1594163036141,"duration":2}}]},"eb9123a4aa86a26d4fdbf67e2370745f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"aa7d2e5e86b66673","status":"passed","time":{"start":1733030100153,"stop":1733030100153,"duration":0}},{"uid":"783d8a205b731823","status":"passed","time":{"start":1732764220176,"stop":1732764220176,"duration":0}},{"uid":"a3370192ce6dd676","status":"passed","time":{"start":1732428195488,"stop":1732428195488,"duration":0}},{"uid":"337891d8027fbc46","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}},{"uid":"4260c429366ea20f","status":"passed","time":{"start":1724735128789,"stop":1724735128789,"duration":0}}]},"15fae8047ca0fd5a3fd5d8163999631a":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"a36e7f3f488269b3","status":"passed","time":{"start":1596047923842,"stop":1596047923844,"duration":2}},{"uid":"52effcf357771993","status":"passed","time":{"start":1596005123876,"stop":1596005123877,"duration":1}},{"uid":"917217d786d57b05","status":"passed","time":{"start":1594531288784,"stop":1594531288785,"duration":1}},{"uid":"bacaead5358ae167","status":"passed","time":{"start":1594163434246,"stop":1594163434246,"duration":0}},{"uid":"a1882244663764f4","status":"passed","time":{"start":1594163040670,"stop":1594163040671,"duration":1}}]},"a395a9db7232cf7ff71fff0b2b91cd35":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"dac4a125fdccd43d","status":"passed","time":{"start":1596047924521,"stop":1596047924526,"duration":5}},{"uid":"fc1addfd6f00b00c","status":"passed","time":{"start":1596005124630,"stop":1596005124631,"duration":1}},{"uid":"5efb4d1b47235c16","status":"passed","time":{"start":1594531289502,"stop":1594531289504,"duration":2}},{"uid":"e42faa83fc799357","status":"passed","time":{"start":1594163434944,"stop":1594163434945,"duration":1}},{"uid":"cb7c18cf40dc11a6","status":"passed","time":{"start":1594163041342,"stop":1594163041343,"duration":1}}]},"763475007d09f077c2c251a191291e14":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5503b0de9149b0f0","status":"passed","time":{"start":1733030100961,"stop":1733030100961,"duration":0}},{"uid":"ffc8d600f4ca1daf","status":"passed","time":{"start":1732764221064,"stop":1732764221066,"duration":2}},{"uid":"be8f9e1d393606ac","status":"passed","time":{"start":1732428196270,"stop":1732428196270,"duration":0}},{"uid":"64a44b1c9018ad85","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}},{"uid":"8fac702aa93d2093","status":"passed","time":{"start":1724735129555,"stop":1724735129555,"duration":0}}]},"4c2585fd6b96cad843a0f2e0303307a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5e31252b7c665242","status":"passed","time":{"start":1596047919652,"stop":1596047919654,"duration":2}},{"uid":"9bfa4c13e3a506f0","status":"passed","time":{"start":1596005119626,"stop":1596005119627,"duration":1}},{"uid":"72f41051e59d9c2","status":"passed","time":{"start":1594531284530,"stop":1594531284531,"duration":1}},{"uid":"eff518e0ecf5002b","status":"passed","time":{"start":1594163430075,"stop":1594163430075,"duration":0}},{"uid":"19f27764a712350c","status":"passed","time":{"start":1594163036289,"stop":1594163036290,"duration":1}}]},"4bc77dd633e396ca329c8c080bc9fdd4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1d66fba071a35b6c","status":"passed","time":{"start":1596047924179,"stop":1596047924179,"duration":0}},{"uid":"f938272e0f17dcf0","status":"passed","time":{"start":1596005124280,"stop":1596005124280,"duration":0}},{"uid":"a5b72a3b95ffe939","status":"passed","time":{"start":1594531289115,"stop":1594531289116,"duration":1}},{"uid":"9c745437af7d407a","status":"passed","time":{"start":1594163434619,"stop":1594163434619,"duration":0}},{"uid":"7a55e5498afe6aa1","status":"passed","time":{"start":1594163041004,"stop":1594163041005,"duration":1}}]},"ca529ab6c57db539179bf256595c3d50":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"a92222b0b7f4d601","status":"passed","time":{"start":1733030099005,"stop":1733030099005,"duration":0}},{"uid":"5654bb5658921dcd","status":"passed","time":{"start":1732764218944,"stop":1732764218944,"duration":0}},{"uid":"67a957cc2815c6ee","status":"passed","time":{"start":1732428194283,"stop":1732428194283,"duration":0}},{"uid":"cb5c8ea3b9796931","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}},{"uid":"4e7abb728f95d63f","status":"passed","time":{"start":1724735127688,"stop":1724735127688,"duration":0}}]},"5d9c9166bf610b28a284723b5b23aab1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"48f19bb58dd1432f","status":"passed","time":{"start":1733030099411,"stop":1733030100106,"duration":695}},{"uid":"53eb34bc4e02fa07","status":"passed","time":{"start":1732764219387,"stop":1732764220132,"duration":745}},{"uid":"56da494ae1701253","status":"passed","time":{"start":1732428194708,"stop":1732428195425,"duration":717}},{"uid":"964ad50f448ed64d","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}},{"uid":"7f2ec06c200d3086","status":"passed","time":{"start":1724735128094,"stop":1724735128742,"duration":648}}]},"e1a83b5e7221ab7611b800cba5c64efa":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5b36ed636679609b","status":"passed","time":{"start":1733030100757,"stop":1733030100773,"duration":16}},{"uid":"1bd3919646678e3f","status":"passed","time":{"start":1732764220786,"stop":1732764220786,"duration":0}},{"uid":"3e68653192929d9b","status":"passed","time":{"start":1732428196060,"stop":1732428196060,"duration":0}},{"uid":"95011c2c3c205658","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"f8cfd8001c2b32fd","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"0b4f28ec26521cef2eb63255cb9cd818":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f9c04a3602727acb","status":"passed","time":{"start":1596047920605,"stop":1596047920607,"duration":2}},{"uid":"9090e44c16d7caa","status":"passed","time":{"start":1596005120499,"stop":1596005120501,"duration":2}},{"uid":"69907fdbdf419e57","status":"passed","time":{"start":1594531285437,"stop":1594531285438,"duration":1}},{"uid":"f89cdaccf6fa8e22","status":"passed","time":{"start":1594163430906,"stop":1594163430907,"duration":1}},{"uid":"5053ed702a1b906e","status":"passed","time":{"start":1594163037150,"stop":1594163037151,"duration":1}}]},"69a156fb0b04999e58427537301412d4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"984b8a80ce69773d","status":"passed","time":{"start":1733030100122,"stop":1733030100122,"duration":0}},{"uid":"48fa5f91e3478c29","status":"passed","time":{"start":1732764220149,"stop":1732764220149,"duration":0}},{"uid":"4a386a153d4cde6","status":"passed","time":{"start":1732428195452,"stop":1732428195452,"duration":0}},{"uid":"19910c11538825d6","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}},{"uid":"6b49391a0624f51c","status":"passed","time":{"start":1724735128758,"stop":1724735128758,"duration":0}}]},"ba750fe79d2038dec72fcf2a01a1e8fb":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"64bbfa90baeae597","status":"passed","time":{"start":1596047919481,"stop":1596047919487,"duration":6}},{"uid":"24b12e8137c80e1e","status":"passed","time":{"start":1596005119498,"stop":1596005119504,"duration":6}},{"uid":"1138ef36c023d753","status":"passed","time":{"start":1594531284409,"stop":1594531284413,"duration":4}},{"uid":"8db071f80ee283fe","status":"passed","time":{"start":1594163429963,"stop":1594163429967,"duration":4}},{"uid":"d1ccbe662dab7e1a","status":"passed","time":{"start":1594163036159,"stop":1594163036167,"duration":8}}]},"d356143c6b7ca031162b46798e3eaf1b":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"715c14551e27272","status":"passed","time":{"start":1596047919665,"stop":1596047919668,"duration":3}},{"uid":"6d3d114392fadb41","status":"passed","time":{"start":1596005119634,"stop":1596005119635,"duration":1}},{"uid":"c96fa27d7e6ce7f2","status":"passed","time":{"start":1594531284541,"stop":1594531284542,"duration":1}},{"uid":"7880c19b5c2410f7","status":"passed","time":{"start":1594163430081,"stop":1594163430082,"duration":1}},{"uid":"5d34a23c278216c4","status":"passed","time":{"start":1594163036299,"stop":1594163036300,"duration":1}}]},"e1d51bbc08408469e032e2f57944bc05":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d6520bfb9bc036e4","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0}},{"uid":"6035f0fe38b5a062","status":"passed","time":{"start":1732764218796,"stop":1732764218796,"duration":0}},{"uid":"1700dd3f253e8636","status":"passed","time":{"start":1732428194145,"stop":1732428194146,"duration":1}},{"uid":"675849fee1009391","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}},{"uid":"c1f2317d20109e13","status":"passed","time":{"start":1724735127422,"stop":1724735127422,"duration":0}}]},"3d4d9d606fbf24bad8abb0f0f85e6130":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2571a6d17171a809","status":"passed","time":{"start":1733030100325,"stop":1733030100325,"duration":0}},{"uid":"fea5f749a1c464e4","status":"passed","time":{"start":1732764220356,"stop":1732764220356,"duration":0}},{"uid":"c3d1eec0ca08f2cd","status":"passed","time":{"start":1732428195675,"stop":1732428195675,"duration":0}},{"uid":"debf2b82465b0240","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}},{"uid":"ecd029e0f98c606","status":"passed","time":{"start":1724735128961,"stop":1724735128961,"duration":0}}]},"749ee6e9278a75fb77637153b8003619":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f2a1a9d494a0859","status":"passed","time":{"start":1733030098692,"stop":1733030098692,"duration":0}},{"uid":"450fbb27e2067be4","status":"passed","time":{"start":1732764218624,"stop":1732764218624,"duration":0}},{"uid":"f85ab0d3a8429db7","status":"passed","time":{"start":1732428193975,"stop":1732428193976,"duration":1}},{"uid":"c7c7f21adbc73706","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}},{"uid":"647dfe698e2a6fdb","status":"passed","time":{"start":1724735127219,"stop":1724735127219,"duration":0}}]},"4d7a6b080aa8dcf06d68a1f957a8e465":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"25eb791ee007f15b","status":"passed","time":{"start":1733030100231,"stop":1733030100231,"duration":0}},{"uid":"f5c9e062133dbbbb","status":"passed","time":{"start":1732764220268,"stop":1732764220270,"duration":2}},{"uid":"d820d165ec4b4b72","status":"passed","time":{"start":1732428195590,"stop":1732428195590,"duration":0}},{"uid":"cdfe495bc85470d2","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}},{"uid":"7d1621a20d6f8fe7","status":"passed","time":{"start":1724735128883,"stop":1724735128883,"duration":0}}]},"9cff2d5d4d73fbc92b1c7c29d738384f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"b3654581f89b5576","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0}},{"uid":"19cfe4000991e820","status":"passed","time":{"start":1732764220374,"stop":1732764220374,"duration":0}},{"uid":"191f183f3ba0c8ea","status":"passed","time":{"start":1732428195692,"stop":1732428195692,"duration":0}},{"uid":"15008ede7bd87a18","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}},{"uid":"ab402f3759df06f","status":"passed","time":{"start":1724735128977,"stop":1724735128977,"duration":0}}]},"ec5359964a6a6bc7051957eec5d9455d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"8878dccf56d36ba6","status":"passed","time":{"start":1733030100200,"stop":1733030100200,"duration":0}},{"uid":"b22afbc33030e55f","status":"passed","time":{"start":1732764220226,"stop":1732764220226,"duration":0}},{"uid":"e051944b31d54c14","status":"passed","time":{"start":1732428195544,"stop":1732428195544,"duration":0}},{"uid":"3cf8d83dbb2d66b5","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}},{"uid":"f0e71551541527fc","status":"passed","time":{"start":1724735128836,"stop":1724735128852,"duration":16}}]},"b5a1c5eb9c825db6f453100e4dceac7d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"f81d551474e18c5e","status":"passed","time":{"start":1596047919967,"stop":1596047919969,"duration":2}},{"uid":"8d6986ac6e216de1","status":"passed","time":{"start":1596005119923,"stop":1596005119924,"duration":1}},{"uid":"6ebe37257f8b2e7a","status":"passed","time":{"start":1594531284834,"stop":1594531284836,"duration":2}},{"uid":"e8f381b8937b0175","status":"passed","time":{"start":1594163430350,"stop":1594163430351,"duration":1}},{"uid":"d74f4366350b46cb","status":"passed","time":{"start":1594163036572,"stop":1594163036573,"duration":1}}]},"9d5e1a3be58329ea62aa7c12b21cee12":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"2eea57cae258dfc3","status":"passed","time":{"start":1596047924165,"stop":1596047924166,"duration":1}},{"uid":"a22edada6f3540b8","status":"passed","time":{"start":1596005124262,"stop":1596005124263,"duration":1}},{"uid":"3d09526912983c0c","status":"passed","time":{"start":1594531289099,"stop":1594531289099,"duration":0}},{"uid":"ff576073c8c1b0c","status":"passed","time":{"start":1594163434602,"stop":1594163434602,"duration":0}},{"uid":"79a6750ec2527a19","status":"passed","time":{"start":1594163040988,"stop":1594163040988,"duration":0}}]},"fe3bf435377136cbcb53e4db00bd4e51":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"c83ee67899e78ee5","status":"passed","time":{"start":1596047924598,"stop":1596047924599,"duration":1}},{"uid":"6453b46852544d78","status":"passed","time":{"start":1596005124709,"stop":1596005124712,"duration":3}},{"uid":"214a4efcb9d15180","status":"passed","time":{"start":1594531289598,"stop":1594531289599,"duration":1}},{"uid":"1860c39c50316b71","status":"passed","time":{"start":1594163435020,"stop":1594163435021,"duration":1}},{"uid":"58313bdd742f2a27","status":"passed","time":{"start":1594163041426,"stop":1594163041427,"duration":1}}]},"baeb278025592b3aed00b5f1bc1265b1":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"33789c02e7e07041","status":"passed","time":{"start":1733030100773,"stop":1733030100773,"duration":0}},{"uid":"bca9ba5488466979","status":"passed","time":{"start":1732764220804,"stop":1732764220804,"duration":0}},{"uid":"e69093187fd70d56","status":"passed","time":{"start":1732428196075,"stop":1732428196075,"duration":0}},{"uid":"673ecd99dac0c86e","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}},{"uid":"5cbeef874f8f5965","status":"passed","time":{"start":1724735129352,"stop":1724735129352,"duration":0}}]},"fb5416f4a0c4a78ad3808ab359d4e649":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d6132c04157f4b2a","status":"passed","time":{"start":1596047924036,"stop":1596047924037,"duration":1}},{"uid":"9332954a139757ab","status":"passed","time":{"start":1596005124129,"stop":1596005124130,"duration":1}},{"uid":"6872cd0b6a805b50","status":"passed","time":{"start":1594531288975,"stop":1594531288976,"duration":1}},{"uid":"ef79cb2d20d63f20","status":"passed","time":{"start":1594163434471,"stop":1594163434472,"duration":1}},{"uid":"e7f62911eeac29ea","status":"passed","time":{"start":1594163040849,"stop":1594163040849,"duration":0}}]},"e3ba8e7dce83ab9de36ddd0bc268f4f6":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5647d5db4078d707","status":"passed","time":{"start":1733030100882,"stop":1733030100882,"duration":0}},{"uid":"a61ba5af03a1f296","status":"passed","time":{"start":1732764220961,"stop":1732764220961,"duration":0}},{"uid":"784b6f629ce5c547","status":"passed","time":{"start":1732428196187,"stop":1732428196188,"duration":1}},{"uid":"90eee3ddc83b1454","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}},{"uid":"c0e2de6ef36ce602","status":"passed","time":{"start":1724735129477,"stop":1724735129477,"duration":0}}]},"d4a8464dd6f2b83ea40747eae5a42d88":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"fa3e743f55019b26","status":"passed","time":{"start":1596047923633,"stop":1596047923635,"duration":2}},{"uid":"724aebb7bb591edc","status":"passed","time":{"start":1596005123662,"stop":1596005123662,"duration":0}},{"uid":"b189ef050374abe4","status":"passed","time":{"start":1594531288577,"stop":1594531288578,"duration":1}},{"uid":"1e5b9de99f42c348","status":"passed","time":{"start":1594163434022,"stop":1594163434024,"duration":2}},{"uid":"6bbc7bdaf84f47b6","status":"passed","time":{"start":1594163040504,"stop":1594163040506,"duration":2}}]},"ac7e79f0af8659ddbaffd6954aed70a9":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4e3f7ea473e691d3","status":"passed","time":{"start":1733030100278,"stop":1733030100278,"duration":0}},{"uid":"e53952640c2c9e47","status":"passed","time":{"start":1732764220312,"stop":1732764220312,"duration":0}},{"uid":"fc455123cb448d3e","status":"passed","time":{"start":1732428195634,"stop":1732428195634,"duration":0}},{"uid":"31cd5c9e8017f83c","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}},{"uid":"1ef3e1da7f90eb82","status":"passed","time":{"start":1724735128914,"stop":1724735128930,"duration":16}}]},"124f2add699f3e2269c311afae219c6e":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5bee7e36f6e76857","status":"passed","time":{"start":1733030099317,"stop":1733030099317,"duration":0}},{"uid":"e1af2c095108694d","status":"passed","time":{"start":1732764219284,"stop":1732764219285,"duration":1}},{"uid":"9c5c32029e742eac","status":"passed","time":{"start":1732428194603,"stop":1732428194603,"duration":0}},{"uid":"fc2c5a5df6e26162","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}},{"uid":"79e39b6957e2fa23","status":"passed","time":{"start":1724735128000,"stop":1724735128000,"duration":0}}]},"00f2b41781fa6c1345db0eef2722bb55":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"d5c2415425478b91","status":"passed","time":{"start":1596047924330,"stop":1596047924333,"duration":3}},{"uid":"31818e51390a433c","status":"passed","time":{"start":1596005124436,"stop":1596005124437,"duration":1}},{"uid":"3ddaef01fdc5c620","status":"passed","time":{"start":1594531289274,"stop":1594531289275,"duration":1}},{"uid":"4407a5be4c071461","status":"passed","time":{"start":1594163434758,"stop":1594163434758,"duration":0}},{"uid":"f1ab192b8a6411ab","status":"passed","time":{"start":1594163041146,"stop":1594163041147,"duration":1}}]},"7dba0545991d74ec4981bfb3eea48559":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"9e6eb35888cc4f59","status":"passed","time":{"start":1733030099364,"stop":1733030099364,"duration":0}},{"uid":"17c9a97f8a5ea815","status":"passed","time":{"start":1732764219332,"stop":1732764219333,"duration":1}},{"uid":"8da01589d3299948","status":"passed","time":{"start":1732428194656,"stop":1732428194656,"duration":0}},{"uid":"ef7e94367cfcafa4","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}},{"uid":"14e29fc6b385d9d8","status":"passed","time":{"start":1724735128047,"stop":1724735128047,"duration":0}}]},"3a32e7325b0c9478ff49b72ce837742c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"930cb72c6f547a67","status":"passed","time":{"start":1596047920523,"stop":1596047920526,"duration":3}},{"uid":"716980b213533f3d","status":"passed","time":{"start":1596005120419,"stop":1596005120420,"duration":1}},{"uid":"e648af0ce34ed5de","status":"passed","time":{"start":1594531285369,"stop":1594531285370,"duration":1}},{"uid":"73de36b94710dfb8","status":"passed","time":{"start":1594163430816,"stop":1594163430817,"duration":1}},{"uid":"b39c075966292b12","status":"passed","time":{"start":1594163037067,"stop":1594163037068,"duration":1}}]},"6431e0366c9c302e03ac01343fb7ea77":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"1137568979e0ed3a","status":"passed","time":{"start":1733030100169,"stop":1733030100169,"duration":0}},{"uid":"a30a3ac9558d7a9c","status":"passed","time":{"start":1732764220206,"stop":1732764220207,"duration":1}},{"uid":"7e997a5018ff0710","status":"passed","time":{"start":1732428195517,"stop":1732428195517,"duration":0}},{"uid":"d57f06aa2f911f40","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}},{"uid":"bb5e32abc058341d","status":"passed","time":{"start":1724735128820,"stop":1724735128820,"duration":0}}]},"280ba3561eb9309051fd2778469a0bed":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"824a9a67d43de1dd","status":"passed","time":{"start":1596047920647,"stop":1596047920648,"duration":1}},{"uid":"b775955afbbce28f","status":"passed","time":{"start":1596005120534,"stop":1596005120535,"duration":1}},{"uid":"127f278b41a7dca8","status":"passed","time":{"start":1594531285467,"stop":1594531285468,"duration":1}},{"uid":"4188da9f65261fe5","status":"passed","time":{"start":1594163430944,"stop":1594163430945,"duration":1}},{"uid":"10429517faa23f8","status":"passed","time":{"start":1594163037186,"stop":1594163037186,"duration":0}}]},"a8c1dee0bdda59abffbbae24dc4b176d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7ee83bbfb7cc9c53","status":"passed","time":{"start":1596047920319,"stop":1596047920320,"duration":1}},{"uid":"fe0f9b3f5e50ccb8","status":"passed","time":{"start":1596005120210,"stop":1596005120213,"duration":3}},{"uid":"2ba3a6269c4b7c53","status":"passed","time":{"start":1594531285182,"stop":1594531285183,"duration":1}},{"uid":"59f960e239ec2fa9","status":"passed","time":{"start":1594163430660,"stop":1594163430661,"duration":1}},{"uid":"364b734ed76afce9","status":"passed","time":{"start":1594163036883,"stop":1594163036884,"duration":1}}]},"3546afa49f7d1872d60856dcd3614357":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"7e7534020c406c41","status":"passed","time":{"start":1733030101086,"stop":1733030101086,"duration":0}},{"uid":"ee50880cc545f1d3","status":"passed","time":{"start":1732764221246,"stop":1732764221247,"duration":1}},{"uid":"11fa683d801b6c42","status":"passed","time":{"start":1732428196393,"stop":1732428196393,"duration":0}},{"uid":"874b39a75ad8fa3b","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}},{"uid":"ce5b44ba32daaf31","status":"passed","time":{"start":1724735129680,"stop":1724735129680,"duration":0}}]},"d7b951f3d87d7ec30599f08ae5567eb7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"ece5bd16ef8bbe52","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0}},{"uid":"e687a692c2c18f1b","status":"passed","time":{"start":1732764219250,"stop":1732764219251,"duration":1}},{"uid":"40c938f8f83f34f7","status":"passed","time":{"start":1732428194567,"stop":1732428194567,"duration":0}},{"uid":"e6a3da330525d2f4","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}},{"uid":"b78c37ec3b0f496f","status":"passed","time":{"start":1724735127969,"stop":1724735127969,"duration":0}}]},"6988bafab53d2d16b0f0a8a4a8fb9863":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":12,"unknown":0,"total":12},"items":[{"uid":"e1c6185b64159c18","status":"passed","time":{"start":1596047923294,"stop":1596047923296,"duration":2}},{"uid":"a9a31daff9b730d4","status":"passed","time":{"start":1596005123306,"stop":1596005123307,"duration":1}},{"uid":"2698a1a809c0b24c","status":"passed","time":{"start":1594531288225,"stop":1594531288226,"duration":1}},{"uid":"18a09107a9bbb648","status":"passed","time":{"start":1594163433751,"stop":1594163433752,"duration":1}},{"uid":"c8f50edc30ce4b35","status":"passed","time":{"start":1594163040227,"stop":1594163040228,"duration":1}}]},"5e365f66b39a2fede4fe18a5cc569699":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"80b7e762ad299367","status":"passed","time":{"start":1733030099286,"stop":1733030099286,"duration":0}},{"uid":"354cda6601a7cded","status":"passed","time":{"start":1732764219243,"stop":1732764219243,"duration":0}},{"uid":"2bfddef765c09569","status":"passed","time":{"start":1732428194558,"stop":1732428194558,"duration":0}},{"uid":"dc29e000a4adcd25","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}},{"uid":"f52a489cb0add672","status":"passed","time":{"start":1724735127953,"stop":1724735127953,"duration":0}}]},"9ee76de6cf1207ebcbd153d4e9a5e5a0":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6a4b5866cd20e8a2","status":"passed","time":{"start":1596047923614,"stop":1596047923616,"duration":2}},{"uid":"8bfe2a5d486dbd32","status":"passed","time":{"start":1596005123645,"stop":1596005123645,"duration":0}},{"uid":"64e5afc5a7c73bf5","status":"passed","time":{"start":1594531288565,"stop":1594531288566,"duration":1}},{"uid":"44de51fad33773e2","status":"passed","time":{"start":1594163434008,"stop":1594163434009,"duration":1}},{"uid":"2cbb12a605f4b028","status":"passed","time":{"start":1594163040495,"stop":1594163040496,"duration":1}}]},"079ace8555debd1c87111e8c5a6664bf":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"2a82791553e70088","status":"passed","time":{"start":1733030100804,"stop":1733030100804,"duration":0}},{"uid":"3ead41117d0ad5b6","status":"passed","time":{"start":1732764220845,"stop":1732764220845,"duration":0}},{"uid":"c7e963fd1c95dafe","status":"passed","time":{"start":1732428196101,"stop":1732428196101,"duration":0}},{"uid":"d3037fd25424c6f3","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}},{"uid":"1d2c6842ef40288f","status":"passed","time":{"start":1724735129383,"stop":1724735129383,"duration":0}}]},"2669fd06acd58d7f78fab9b09cfb387a":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"a6e6436071520980","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919201,"stop":1596047919201,"duration":0}},{"uid":"2ebf3e3f671bbc1f","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119239,"stop":1596005119239,"duration":0}},{"uid":"239b75ebf85f19ea","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284144,"stop":1594531284144,"duration":0}},{"uid":"464c56c85b2fe399","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163429713,"stop":1594163429713,"duration":0}},{"uid":"58f56b3c59d560ca","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163035897,"stop":1594163035897,"duration":0}}]},"c191b2a68976eb18aef4345f496d79e7":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"c245bb8192a35073","status":"passed","time":{"start":1733030101179,"stop":1733030101179,"duration":0}},{"uid":"65e9477143af3f55","status":"passed","time":{"start":1732764221376,"stop":1732764221377,"duration":1}},{"uid":"4c77d97bc41048ff","status":"passed","time":{"start":1732428196503,"stop":1732428196503,"duration":0}},{"uid":"35cf25b9e515e00d","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}},{"uid":"928532982127bba0","status":"passed","time":{"start":1724735129789,"stop":1724735129789,"duration":0}}]},"98a40966717cba446766c1d244440410":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ae3e4db1c423b2d","status":"passed","time":{"start":1596047924295,"stop":1596047924296,"duration":1}},{"uid":"23b7ab66cb15d148","status":"passed","time":{"start":1596005124397,"stop":1596005124399,"duration":2}},{"uid":"623e837ec7d2bd60","status":"passed","time":{"start":1594531289235,"stop":1594531289236,"duration":1}},{"uid":"d38fbab0f0c5894c","status":"passed","time":{"start":1594163434723,"stop":1594163434724,"duration":1}},{"uid":"baaf6a05572983a","status":"passed","time":{"start":1594163041113,"stop":1594163041114,"duration":1}}]},"0704c8beeeff66cfb456c26853e2b7c4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f51b45f6ebc18bdf","status":"passed","time":{"start":1733030098880,"stop":1733030098880,"duration":0}},{"uid":"a908975bd67b2eca","status":"passed","time":{"start":1732764218803,"stop":1732764218803,"duration":0}},{"uid":"15f47b991f284575","status":"passed","time":{"start":1732428194154,"stop":1732428194154,"duration":0}},{"uid":"7f90afc62f8400f4","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}},{"uid":"a921030da8c9a520","status":"passed","time":{"start":1724735127422,"stop":1724735127438,"duration":16}}]},"69736adb645541830719370905336c42":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"7262a5b4d0ba4a3e","status":"passed","time":{"start":1596047923313,"stop":1596047923317,"duration":4}},{"uid":"e0c1a391ff3fe7a","status":"passed","time":{"start":1596005123317,"stop":1596005123317,"duration":0}},{"uid":"7069bd627c12c718","status":"passed","time":{"start":1594531288236,"stop":1594531288238,"duration":2}},{"uid":"82e82ea7e37f1711","status":"passed","time":{"start":1594163433761,"stop":1594163433763,"duration":2}},{"uid":"2ad13488b1fdc2c3","status":"passed","time":{"start":1594163040238,"stop":1594163040239,"duration":1}}]},"ced53b89becdc7959575153b365c4b1c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"ad06d9389201ca83","status":"passed","time":{"start":1596047923585,"stop":1596047923587,"duration":2}},{"uid":"86c7a820a8ed23ae","status":"passed","time":{"start":1596005123620,"stop":1596005123623,"duration":3}},{"uid":"434217de6e30487c","status":"passed","time":{"start":1594531288532,"stop":1594531288534,"duration":2}},{"uid":"7e9ef2cf5cdf0299","status":"passed","time":{"start":1594163433982,"stop":1594163433984,"duration":2}},{"uid":"c91f8fbb177af405","status":"passed","time":{"start":1594163040465,"stop":1594163040467,"duration":2}}]},"43747c0f5661889622b1e0d54e75b407":{"statistic":{"failed":0,"broken":0,"skipped":34,"passed":0,"unknown":0,"total":34},"items":[{"uid":"e1fafa015119497c","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596047919583,"stop":1596047919583,"duration":0}},{"uid":"b16909fb3fbd2c73","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1596005119573,"stop":1596005119573,"duration":0}},{"uid":"bbf0f3d68ee97599","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594531284470,"stop":1594531284470,"duration":0}},{"uid":"7df29ff1f7409057","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163430024,"stop":1594163430025,"duration":1}},{"uid":"b69c36e16ce7f33d","status":"skipped","statusDetails":"Skipped: The solution is not ready","time":{"start":1594163036243,"stop":1594163036243,"duration":0}}]},"d34cb280748c185f029a17e9d0ab6437":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"5880c730022f01ee","status":"passed","time":{"start":1733030100820,"stop":1733030100820,"duration":0}},{"uid":"d9e0d2d6c00c88e9","status":"passed","time":{"start":1732764220875,"stop":1732764220875,"duration":0}},{"uid":"dde0d2c7fdfdde63","status":"passed","time":{"start":1732428196126,"stop":1732428196126,"duration":0}},{"uid":"5b9aa5357d8d514d","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"8b31152bd581baeb","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"b51be2be310394256f22a0dcf45fea1f":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1},"items":[{"uid":"d0cba34627dad034","status":"passed","time":{"start":1733030100742,"stop":1733030100742,"duration":0}}]},"f85904fe28e7bada8e4dc0f97f50008c":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3336ba2bde90bdb5","status":"passed","time":{"start":1596047924731,"stop":1596047924732,"duration":1}},{"uid":"a99dfef2ccd91b8e","status":"passed","time":{"start":1596005124899,"stop":1596005124901,"duration":2}},{"uid":"295c84b73c362a1c","status":"passed","time":{"start":1594531289763,"stop":1594531289764,"duration":1}},{"uid":"a17ba15dec7cbf3d","status":"passed","time":{"start":1594163435154,"stop":1594163435155,"duration":1}},{"uid":"a2055883afb4a2fd","status":"passed","time":{"start":1594163041575,"stop":1594163041576,"duration":1}}]},"570c0d220c13fc0fd061240afc68e35d":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":3,"unknown":0,"total":3},"items":[{"uid":"902288cde0f2109a","status":"passed","time":{"start":1733030100340,"stop":1733030100340,"duration":0}},{"uid":"168d1058a213deae","status":"passed","time":{"start":1732764220362,"stop":1732764220362,"duration":0}},{"uid":"ac379271ec16d5ad","status":"passed","time":{"start":1732428195683,"stop":1732428195683,"duration":0}}]},"939a8064e3d28ec85fadd67010b560ae":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"d06d6d8db945d4d7","status":"passed","time":{"start":1733030098630,"stop":1733030098630,"duration":0}},{"uid":"5194ad39db439d08","status":"passed","time":{"start":1732764218553,"stop":1732764218553,"duration":0}},{"uid":"e78e70d10bce7cf5","status":"passed","time":{"start":1732428193909,"stop":1732428193909,"duration":0}},{"uid":"371888dd705cab28","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}},{"uid":"57bbb6ca73efd1b4","status":"passed","time":{"start":1724735127157,"stop":1724735127172,"duration":15}}]},"31852768c071e158fda7de0b172143f4":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"99e95613ed424b35","status":"passed","time":{"start":1733030098864,"stop":1733030098864,"duration":0}},{"uid":"61e07c6ddcc506b1","status":"passed","time":{"start":1732764218771,"stop":1732764218772,"duration":1}},{"uid":"9f9422c1f71252b6","status":"passed","time":{"start":1732428194124,"stop":1732428194125,"duration":1}},{"uid":"e03974f538ea8ee6","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}},{"uid":"acc95e26a53d92ff","status":"passed","time":{"start":1724735127391,"stop":1724735127391,"duration":0}}]},"7c789f6ee990c99f027ff5b8c32573fd":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"4d07449717f6193c","status":"passed","time":{"start":1733030100836,"stop":1733030100836,"duration":0}},{"uid":"302e450946481df3","status":"passed","time":{"start":1732764220887,"stop":1732764220887,"duration":0}},{"uid":"60180807c3815756","status":"passed","time":{"start":1732428196133,"stop":1732428196134,"duration":1}},{"uid":"a10d36c92cf89a63","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}},{"uid":"9710b9a44c2e3c82","status":"passed","time":{"start":1724735129414,"stop":1724735129414,"duration":0}}]},"39c4344b5cd24c424efd894c14cc4e91":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"6ee41e4ff7ffb39e","status":"passed","time":{"start":1596047924306,"stop":1596047924307,"duration":1}},{"uid":"1783ee7e028711d6","status":"passed","time":{"start":1596005124404,"stop":1596005124405,"duration":1}},{"uid":"ef2acd7afc68c4bd","status":"passed","time":{"start":1594531289244,"stop":1594531289245,"duration":1}},{"uid":"371f968a29c2bcdf","status":"passed","time":{"start":1594163434730,"stop":1594163434730,"duration":0}},{"uid":"f76a96c89083f300","status":"passed","time":{"start":1594163041121,"stop":1594163041122,"duration":1}}]},"30b0607f1fcd48dea967a2df41a1ef54":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"250189cf32435be5","status":"passed","time":{"start":1596047923911,"stop":1596047923912,"duration":1}},{"uid":"77fa96eeec6e4d15","status":"passed","time":{"start":1596005123948,"stop":1596005123949,"duration":1}},{"uid":"f7ccce118a86144d","status":"passed","time":{"start":1594531288840,"stop":1594531288841,"duration":1}},{"uid":"8ba130a1169e2da9","status":"passed","time":{"start":1594163434319,"stop":1594163434320,"duration":1}},{"uid":"139199f0716be385","status":"passed","time":{"start":1594163040726,"stop":1594163040726,"duration":0}}]},"2889ca714f21625b11b311b780ead719":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":5,"unknown":0,"total":5},"items":[{"uid":"f74116cee1d73fd7","status":"passed","time":{"start":1733030100403,"stop":1733030100403,"duration":0}},{"uid":"be50565df8dfb0ab","status":"passed","time":{"start":1732764220437,"stop":1732764220438,"duration":1}},{"uid":"f7d2073500029121","status":"passed","time":{"start":1732428195746,"stop":1732428195746,"duration":0}},{"uid":"dcfefe9c10c1f5d2","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}},{"uid":"a37b17c93d1df521","status":"passed","time":{"start":1724735129024,"stop":1724735129024,"duration":0}}]},"2ebd55ae07bf70badb4352cad15caf78":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e2d502f5a6d529d6","status":"passed","time":{"start":1596047923863,"stop":1596047923864,"duration":1}},{"uid":"922f63631d08a3fd","status":"passed","time":{"start":1596005123897,"stop":1596005123897,"duration":0}},{"uid":"7a4da021a2c4d986","status":"passed","time":{"start":1594531288801,"stop":1594531288802,"duration":1}},{"uid":"d336c661e305482f","status":"passed","time":{"start":1594163434268,"stop":1594163434269,"duration":1}},{"uid":"f36eae475bbfb994","status":"passed","time":{"start":1594163040687,"stop":1594163040687,"duration":0}}]}} \ No newline at end of file diff --git a/allure-report/history/retry-trend.json b/allure-report/history/retry-trend.json index d047486576f..42e5e4b88a8 100644 --- a/allure-report/history/retry-trend.json +++ b/allure-report/history/retry-trend.json @@ -1 +1 @@ -[{"data":{"run":222,"retry":219}},{"data":{"run":221,"retry":8096}},{"data":{"run":221,"retry":7876}},{"data":{"run":220,"retry":7654}},{"data":{"run":220,"retry":7435}},{"data":{"run":220,"retry":7216}},{"data":{"run":219,"retry":6998}},{"data":{"run":218,"retry":6781}},{"data":{"run":217,"retry":6565}},{"data":{"run":217,"retry":6349}},{"data":{"run":217,"retry":6133}},{"data":{"run":217,"retry":6133}},{"data":{"run":215,"retry":5919}},{"data":{"run":213,"retry":5493}},{"data":{"run":211,"retry":5073}},{"data":{"run":210,"retry":4864}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}},{"data":{"run":199,"retry":3432}}] \ No newline at end of file +[{"data":{"run":232,"retry":882}},{"data":{"run":227,"retry":659}},{"data":{"run":226,"retry":437}},{"data":{"run":222,"retry":219}},{"data":{"run":222,"retry":219}},{"data":{"run":221,"retry":8096}},{"data":{"run":221,"retry":7876}},{"data":{"run":220,"retry":7654}},{"data":{"run":220,"retry":7435}},{"data":{"run":220,"retry":7216}},{"data":{"run":219,"retry":6998}},{"data":{"run":218,"retry":6781}},{"data":{"run":217,"retry":6565}},{"data":{"run":217,"retry":6349}},{"data":{"run":217,"retry":6133}},{"data":{"run":217,"retry":6133}},{"data":{"run":215,"retry":5919}},{"data":{"run":213,"retry":5493}},{"data":{"run":211,"retry":5073}},{"data":{"run":210,"retry":4864}}] \ No newline at end of file diff --git a/allure-report/index.html b/allure-report/index.html index d2055a014b0..67311e07746 100644 --- a/allure-report/index.html +++ b/allure-report/index.html @@ -26,7 +26,7 @@ gtag('js', new Date()); gtag('config', 'G-FVWC4GKEYS', { 'allureVersion': '2.30.0', - 'reportUuid': '5c715f6a-14aa-4243-9315-367d60063a4b', + 'reportUuid': '724a0949-6a3b-4379-bf5d-61d5af5d05ca', 'single_file': false }); diff --git a/allure-report/widgets/duration-trend.json b/allure-report/widgets/duration-trend.json index 42d0e4b56cb..1149e3d550b 100644 --- a/allure-report/widgets/duration-trend.json +++ b/allure-report/widgets/duration-trend.json @@ -1 +1 @@ -[{"data":{"duration":1655595}},{"data":{"duration":6277517630}},{"data":{"duration":6234717799}},{"data":{"duration":4760882662}},{"data":{"duration":4393028053}},{"data":{"duration":4392634474}},{"data":{"duration":4233561443}},{"data":{"duration":4044303027}},{"data":{"duration":4042851547}},{"data":{"duration":4041072223}},{"data":{"duration":3966081176}},{"data":{"duration":3966081176}},{"data":{"duration":2482854152}},{"data":{"duration":2325934223}},{"data":{"duration":1181987141}},{"data":{"duration":677478359}},{"data":{"duration":59372266}},{"data":{"duration":5213}},{"data":{"duration":5234}},{"data":{"duration":5253}}] \ No newline at end of file +[{"data":{"duration":8296626985}},{"data":{"duration":8030747183}},{"data":{"duration":7694722309}},{"data":{"duration":1655595}},{"data":{"duration":1655595}},{"data":{"duration":6277517630}},{"data":{"duration":6234717799}},{"data":{"duration":4760882662}},{"data":{"duration":4393028053}},{"data":{"duration":4392634474}},{"data":{"duration":4233561443}},{"data":{"duration":4044303027}},{"data":{"duration":4042851547}},{"data":{"duration":4041072223}},{"data":{"duration":3966081176}},{"data":{"duration":3966081176}},{"data":{"duration":2482854152}},{"data":{"duration":2325934223}},{"data":{"duration":1181987141}},{"data":{"duration":677478359}}] \ No newline at end of file diff --git a/allure-report/widgets/duration.json b/allure-report/widgets/duration.json index 8502c5270a0..32aa2b3e6f3 100644 --- a/allure-report/widgets/duration.json +++ b/allure-report/widgets/duration.json @@ -1 +1 @@ -[{"uid":"30cacf1f2fb31f20","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1ed75effe27f7a1","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"aca9d99cb0e5842e","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"409595d25cc5d60c","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"43c0068fe0a1265e","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"6ce4bba2ff4664c2","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"dfb4af6de633e98","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f91e5f44fcbcaa","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"a8ada246e9141e4e","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"de314943cf5bdd10","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"324c41918ed3c26a","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"74afb414b6e0cabc","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cef5a6f9a11a927","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cad1df85b3a49c","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f2317d20109e13","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"913459f449cde9ee","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"776a48c95cfacbf7","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ded43d0fdf317ac","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0e2de6ef36ce602","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"6af8370630444180","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f2ec06c200d3086","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"291bd12f30edb56f","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"bdcb772653d8aad","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"a83637127d81f7d9","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d1621a20d6f8fe7","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"16026a681cee6bae","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"6827fd264cb4d263","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ecd029e0f98c606","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"9275e1d85a023003","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"46f01e6c3f72b063","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7106989a12e3c0a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"d837297408a13c1e","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"627a7fd2fe38a284","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cbeef874f8f5965","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8e9539521c4ca00","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5da6537a014533","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"dba3101c45ee1611","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8f6e0603b79e82b","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"53d75ff9d73daf75","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d3e842542b066f3","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"14e29fc6b385d9d8","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"281344c06cab651e","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d06cbc227917e","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"5e4b0e05a0862f7e","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"380e12b965b39180","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"611b4f8cf836294a","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2c6842ef40288f","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a6a3e5884b319c","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f4f9e94ec6d4f1e","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"257a5ad111bd69a7","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"521b14729542d5c4","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"5329936079819472","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c92b73c681a87bf","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef1cf7383671b63","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e7abb728f95d63f","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"f921307aa8b56caa","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"e798d2f5cc38e024","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"689de206e9df0991","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"3be027c950740ddd","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"df3147d31fee6968","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"c301f45b01d7d10f","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"cbc7a26721b4acfd","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"4260c429366ea20f","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b49391a0624f51c","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"acc95e26a53d92ff","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"63cbfe00daba1c69","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab402f3759df06f","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"57946e73be805e2a","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"6bb1a909958ad3a2","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b9e5073b489f49","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5a3f0d4d035c3a4","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"afdaa298aab7eba8","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb032b53923bc0e9","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"af3c309699fc2b8b","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"3bd61bc704b417e2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb3ce43e36479ba0","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"c462a5b80d49c98b","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ecfe278b9d03b10","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"b78c37ec3b0f496f","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8b2e451486f6a25","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"863d982a547ab48a","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"92b17e5074e54ef7","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"578c3a6cd3e7e40f","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7f51c235702ff2b","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8cfd8001c2b32fd","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"c322e80c6cd8da83","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ce5b44ba32daaf31","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"aac9dbbaca38b054","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c3877c30e625752","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"f09191f837671677","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5e3b3442b4ab9dd","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"fed28c7a9755def6","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1c4cfcd59974ea","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d90f23892be7ac3","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"af6e405f57c78056","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"2ed8dfd7ca5a3d13","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"e650d3e05f6d005c","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef3e1da7f90eb82","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"a0cc441d7d4eb4dd","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"564be6d750e08ee1","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"469371686ca36a1e","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"2f09ef1a750aec43","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"a2776f2124bd86f4","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ba8a4247f4c6307","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"db7b4c897ddcf1a6","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"f3b283ff21d85aec","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"a80b9adf611eb67d","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"62bf772c3a2aa5d2","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2030ea00b6998f67","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"b14acb4de8eb0e3a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"85d9d1820cce2f7e","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"6881087bd4c8b374","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"84ae1ddd95d9c6d3","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad12195e4f930686","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad08cb0fb6eef203","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f80f9bf6821c7c25","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"b32352034ba0a692","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"4bdc75ea73bb042","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"9710b9a44c2e3c82","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"3151ebffdc64c952","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"2d65aaadaa20d5c2","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a85b974bace8b60","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"a921030da8c9a520","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"f0c848519588d2dc","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb5e32abc058341d","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"bc3230f80ad8864d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"781079de643a720d","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ea60f3a146e3d51","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f5877935ced5c5","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"cf2235e5886d8954","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"62692a0c3dd76e6c","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbbb69f84c1b433f","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"a064a48d91c28f13","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"91ff78dc5a767b91","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"928532982127bba0","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"966dbbb37b9c251e","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"d65c16a1b47d468e","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1acd3007b7873ed","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"6fbcaa806475fb37","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"99f691b62c390084","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c64823a2a73f974","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"c0ff31e127206139","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"a3beec2fa9a311c4","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f23a2b3d247ad31","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1e70dabc7dad91e","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"70e9bff1f7e13160","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"c63189b867db5809","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"4359475f5ec554bd","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"e885db3276511b9a","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"66511dda8143933e","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"c11bd2bbb0f17cd9","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd298347a8b67e93","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"62e4f6698c2439c","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"e943739be0c776f3","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"3fa15071b1bee987","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"29266ed99d46b2a","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"aee4538f6230f980","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc3f48cf5f0bf9f","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"396df158495e2556","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d238edf9c2316ff","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"164087ecc666d9a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"b867e5092f796e5b","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"34febd97f08d8df7","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5b1db39220bbcf9","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"a33fb2570aec1823","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"f52a489cb0add672","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"a7151a5672bbc2f6","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f890ca68cdfc481","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"af191d67a3f53ad3","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"73a0aa79bef78acd","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c281d5272513bfd","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"66f1b8d1e5ed1dbe","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c8034b1a6365fc2","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cbc31ebfbb61905","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"647dfe698e2a6fdb","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"682a94239c4fcbde","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"5653676293d9b683","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"a42793a5da57f5c7","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"a14fdddc74cd287e","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"34569132e9551c33","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ef0ca25b0e8e9c5","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"547f04beeb8e83b4","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"f0d79dba84dbdf82","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1585e7c78fd8d06","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fba83a53ac553ac","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"},{"uid":"b843b5b7994550ed","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c2a3e42bb3933c8","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"89ceeba296a3ea3","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"41a3f66c1c393960","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"1152e12f582a6d83","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"620b2589fb870406","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e5ac2209dd79eabb","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5ecd182a341dd7b4","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e8c0121e99e8c0","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c4e292a782b80e3","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"de3c176bdacd6cb0","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"be5a8376fdcba717","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"900ed6bd99df3d56","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f0e71551541527fc","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"3edaeb1c9114b312","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6a770856a19e186","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"c08b2480b8f26290","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"b98125cb150cd794","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"57bbb6ca73efd1b4","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"a2cb5446a34df86","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"b864bfcb14132f63","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c5d99461aa2603","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"204a2114486cc2f9","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8fac702aa93d2093","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"79e39b6957e2fa23","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0e76f32ac7ce4e","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"ccf5a8c46639d0ec","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"93b3042e12ae0dc2","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"cee46a1116cde2e1","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"73d92f8f0c07772d","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"8b31152bd581baeb","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"a37b17c93d1df521","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f7088fed8dedd7","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"91e3c1348f0cd9d2","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"af5a357d104e13f2","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4c5ff18f0370583","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"742a65a772f90af2","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"f39847014d01db85","name":"Testing list_squared function","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"status":"passed","severity":"normal"},{"uid":"555817f2fd5ba68f","name":"'multiply' function verification with random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","severity":"normal"},{"uid":"5364303890f7a5a1","name":"Testing 'feast' function","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee5910cfe65a88ee","name":"Testing valid_parentheses function","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"status":"passed","severity":"normal"},{"uid":"37fbb0401b01604d","name":"Testing hoop_count function (positive test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b5df6c66b23ba75","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"status":"passed","severity":"normal"},{"uid":"5b36ed636679609b","name":"Square numbers (positive)","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"status":"passed","severity":"normal"},{"uid":"46352cf5111d5c61","name":"XOR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8789af2e0cead9e","name":"Wolf at the end of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3654581f89b5576","name":"Testing the 'unique_in_order' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b0b5de93d5cb12","name":"Testing easy_line function exception message","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"5496efe2fd3e353","name":"goals function verification","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"5238b22fc20ccda9","name":"Testing easy_line function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"23b533c70baf95c9","name":"Testing check_exam function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac824f903545a6e7","name":"Testing move_zeros function","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"status":"passed","severity":"normal"},{"uid":"c62025a79b33eb3","name":"test_solution_empty","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"644c808df55456e9","name":"Testing Encoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"c678c03e12583e98","name":"Testing Battle method","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"7940a8ba615e27f7","name":"Testing string_to_array function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ac65e8dc17d86a","name":"Testing litres function with various test inputs","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08a8a15da9b3ad","name":"test_josephus_survivor","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d0b6dccad411741e","name":"Testing the 'solution' function","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","severity":"normal"},{"uid":"b92f0db6c4ee4ff0","name":"Testing format_duration","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"80b7e762ad299367","name":"Testing array_diff function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74a1a4c19be5344","name":"Testing permute_a_palindrome (empty string)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"c9c9a6a75f3a249f","name":"Testing checkchoose function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"f56ae5fa4f278c43","name":"Testing 'DefaultList' class: extend","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3592e93b232bc","name":"Testing 'solution' function","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"7aa3fbfc8218c54e","name":"Testing spiralize function","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"1137568979e0ed3a","name":"Testing 'longest_repetition' function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"213536a8a5597e91","name":"Testing compute_ranks","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec0c7de9a70a5f5e","name":"Testing toJadenCase function (positive)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"7250652c2d8bbae5","name":"AND logical operator","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","severity":"normal"},{"uid":"26189d3cfda1b8d1","name":"Testing calc function","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f90fc4edd70bea","name":"Testing next_smaller function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d53eb58d77047e8","name":"Testing first_non_repeating_letter function","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4e7ccb7c6ccb848","name":"Testing men_from_boys function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1e65f294db5f89","name":"test_solution_basic","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d6520bfb9bc036e4","name":"Testing Warrior class >>> tom","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd83f8828bfb391","name":"Testing 'order' function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"ead644ae8ee031c3","name":"Testing count_letters_and_digits function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"43a52f18fb3b8136","name":"Testing 'snail' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"d20d06b45fb65ddb","name":"Testing tickets function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"8caf8fe76e46aa0f","name":"Testing gap function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"fef6b9be2b6df65c","name":"Test with regular string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"230fd42f20a11e18","name":"Testing number_of_sigfigs function","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"status":"passed","severity":"normal"},{"uid":"95500b18da61d76","name":"Testing 'solution' function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"44141b5da145c70a","name":"Testing 'DefaultList' class: append","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"78aec59881bd461e","name":"Simple test for empty string.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"f807c10786110eac","name":"Large lists","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"218b156daee27f08","name":"Testing largestPower function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"48f19bb58dd1432f","name":"Testing easy_diagonal function","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"status":"passed","severity":"normal"},{"uid":"b59318a9c97ef9f1","name":"STesting enough function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6b67890527d37e6","name":"Testing the 'valid_braces' function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec1f79d5effe1aa9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"52e55a2445119fdd","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"f51b45f6ebc18bdf","name":"Testing Sudoku class","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa0fd3e8d8009a95","name":"Testing stock_list function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2cfb77eef4360e","name":"String with no duplicate chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd56af2e749c4e8a","name":"Testing first_non_repeated function with various inputs","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"456a7345e9aeb905","name":"'multiply' function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"f83b86d7cbc0ffa1","name":"String alphabet chars and spaces","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3fc5966ad47411","name":"Testing 'letter_count' function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ea8a8dc382128a4","name":"test_smallest","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6c8559b634a76bd8","name":"Testing validSolution","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5ba84846c075db5","name":"Testing 'count_sheeps' function: bad input","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb676676627eae5f","name":"test_line_positive","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1cbe6a610fbdfd6","name":"Testing binary_to_string function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74116cee1d73fd7","name":"a or b is negative","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"52f852c4238fea22","name":"Testing 'vaporcode' function","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","severity":"normal"},{"uid":"4cc7d24b84024142","name":"Find the int that appears an odd number of times","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb94d03877c16bb4","name":"Testing Walker class - position property from positive grids","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"5503b0de9149b0f0","name":"Testing period_is_late function (positive)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"469fb46dbe1a31d","name":"Testing permute_a_palindrome (negative)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"22bb7ddce4971121","name":"Testing pig_it function","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"83ae1189d3669b33","name":"Testing the 'pyramid' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"8db7c8bf0abe07bc","name":"Testing two_decimal_places function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffb8e8f4eed50d14","name":"Testing shark function (positive)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"5814d63d4b392228","name":"move function tests","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"8572ffe92ddcaa11","name":"Testing epidemic function","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b2ccbd851ec600","name":"Verify that greet function returns the proper message","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a970025f2147b3a","name":"Testing invite_more_women function (positive)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e884f6ea55b7c35","name":"Wolf at the beginning of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"43578fd4f74ce5d9","name":"test_ips_between","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"skipped","severity":"normal"},{"uid":"902288cde0f2109a","name":"Testing 'parts_sums' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"},{"uid":"690df5b9e2e97d3","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8c57e21dd6fea81","name":"Testing 'summation' function","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"af3a43fc31649664","name":"Testing sum_for_list function","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"status":"passed","severity":"normal"},{"uid":"1cc5ce778c99d98","name":"get_size function tests","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"293f48722d8450df","name":"All chars are in mixed case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"91c1d8a1fc37f84","name":"a an b are positive numbers","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"1fb0e4ddfae0bf06","name":"Testing agents_cleanup function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"984b8a80ce69773d","name":"Testing encrypt_this function","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a6bb93adc2b9500","name":"OR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e7534020c406c41","name":"Testing swap_values function","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2af0876e7f45a7f","name":"'multiply' function verification: lists with multiple digits","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"25eb791ee007f15b","name":"Testing Potion class","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"2571a6d17171a809","name":"Testing digital_root function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"32eaf956310a89b7","name":"Testing invite_more_women function (negative)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"9ba260a0149e6341","name":"Testing increment_string function","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"status":"passed","severity":"normal"},{"uid":"3a516b9dc7b53625","name":"Testing 'greek_comparator' function","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de9285990285353","name":"Testing alphabet_war function","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","severity":"normal"},{"uid":"f2a1a9d494a0859","name":"Testing top_3_words function","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da8c6de16bb179d","name":"Testing 'solution' function","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"33789c02e7e07041","name":"Negative numbers","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb8f6057b9598daa","name":"Non square numbers (negative)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2acdc5e027859f4","name":"Testing anagrams function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c66d03c44b01cf6","name":"Testing the 'group_cities' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb005e45e7b312b5","name":"Testing to_alternating_case function","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"99e95613ed424b35","name":"Testing sum_of_intervals function","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"823dff07664aaa4","name":"powers function should return an array of unique numbers","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"8146fd50051ac96b","name":"a and b are equal","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"d518579b8137712e","name":"Should return 'I smell a series!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"badb2c1a8c5e2d2d","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"777b1d9b55eb3ae9","name":"String with alphabet chars only","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3f7ea473e691d3","name":"Testing the 'sort_array' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b651a3e27842d38","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"68fbe283acac1b6a","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"564bcc936cf15d1a","name":"Testing is_palindrome function","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1e3818ccb62ed24","name":"Non square numbers (negative)","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4cae88de9afaa55","name":"Test that no_space function removes the spaces","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c379ae83853bb2a","name":"Should return 'Publish!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1326d9a3ad9ddfb","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"status":"passed","severity":"normal"},{"uid":"f87e2580dd045df5","name":"Testing 'mix' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"24f0384efd85ae74","name":"Testing share_price function","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb8e119491d2ebc3","name":"Negative test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"f0d7d5d837d1a81d","name":"Testing 'save' function: positive","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492c358ecb2902d","name":"Non consecutive number should be returned","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa7d2e5e86b66673","name":"String with no alphabet chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"913fbd5c2da31308","name":"Testing solution function","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","severity":"normal"},{"uid":"db9b592f660c3c08","name":"Testing 'numericals' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"101b76d3a18bb4c3","name":"Testing string_transformer function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"8878dccf56d36ba6","name":"Testing the 'find_missing_number' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0dd8dfaed76aa75","name":"Testing length function","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5a7f52be4bf7369","name":"Testing shark function (negative)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff093181cede851","name":"Testing 'DefaultList' class: remove","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0cba34627dad034","name":"Test for invalid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"a90239b6ef90f6a6","name":"Testing done_or_not function","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4c3bd7788c9f57d","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"8eb80b15a6d6b848","name":"Testing is_prime function","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"status":"passed","severity":"normal"},{"uid":"3f2e19b818fd15f5","name":"Testing 'generate_hashtag' function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"a088624abb606e0e","name":"Testing make_class function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"4990a9f9fb7d9809","name":"Simple test for valid parentheses","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"status":"passed","severity":"normal"},{"uid":"6f178467aa4ed9b7","name":"'multiply' function verification with one element list","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"status":"passed","severity":"normal"},{"uid":"5bee7e36f6e76857","name":"All chars are in lower case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"72c2edc2055d0da7","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"c245bb8192a35073","name":"Positive test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"733b2334645f5c42","name":"Testing odd_row function","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d07449717f6193c","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0604fc927a7480","name":"Negative non consecutive number should be returned","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9d827d0af3ba710","name":"Testing calc_combinations_per_row function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b2e8453406c3f","name":"Testing 'shortest_job_first(' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff9cf70b259ca21","name":"Testing likes function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"49244d740987433","name":"Testing password function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"f06328bb4646abe9","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","severity":"normal"},{"uid":"b0395834a1dc7266","name":"Testing calculate function","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"status":"passed","severity":"normal"},{"uid":"157d23c0aff9e075","name":"Testing duplicate_encode function","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","severity":"normal"},{"uid":"4223e436b2847599","name":"Testing calculate_damage function","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d9d773987a3ac09","name":"String with no duplicate chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d64a30c387b7743","name":"Testing growing_plant function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8d9a4d573dbda2b","name":"Testing flatten function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e6eb35888cc4f59","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"afa4196b56245753","name":"Testing decipher_this function","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"status":"passed","severity":"normal"},{"uid":"67535419d885cbd9","name":"Testing 'DefaultList' class: insert","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"8c4575be21ff0ded","name":"Testing Warrior class >>> bruce_lee","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"e4473b95f40f5c92","name":"Testing toJadenCase function (negative)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"e42b69525abdede6","name":"Testing make_upper_case function","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1393951861e51a9","name":"Testing solve function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a3aa78afffa487b","name":"Test with empty string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"31ce0fdb81c2daf6","name":"Testing domain_name function","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","severity":"normal"},{"uid":"482cc1b462231f44","name":"test_line_negative","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ad642268f112be60","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a5d0954bb249b69","name":"test_permutations","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ae87022eb9b205bd","name":"'multiply' function verification with empty list","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"ce6714fc18aff8ec","name":"Testing hoop_count function (negative test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"96938210802b960f","name":"test_triangle","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","severity":"normal"},{"uid":"47e3461a4e252fc1","name":"Testing take function","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7ac97a954c5e722","name":"Testing length function where head = None","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"ece5bd16ef8bbe52","name":"Testing to_table function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"69d8ca152b73c452","name":"Testing 'save' function: negative","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"d49eccd60ce84feb","name":"Testing dir_reduc function","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","severity":"normal"},{"uid":"315e825b7f114d5b","name":"Testing all_fibonacci_numbers function","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"status":"passed","severity":"normal"},{"uid":"971c2aa5dd36f62c","name":"Testing max_multiple function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"25c9ba69d5ac48c6","name":"Testing 'factorial' function","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"c515ef635fa26df1","name":"Testing validate_battlefield function","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"status":"passed","severity":"normal"},{"uid":"da807d1d651bf07b","name":"All chars are in upper case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"14c26803c1139e78","name":"Testing 'count_sheeps' function: empty list","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"c50649c997228fe6","name":"Testing set_alarm function","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"5647d5db4078d707","name":"Testing two_decimal_places function","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"e578dac1473f78ec","name":"Wolf in the middle of the queue","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"normal"},{"uid":"cef1ed2aef537de7","name":"a and b are equal","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"506e0ee504d23a05","name":"Testing advice function","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"status":"passed","severity":"normal"},{"uid":"ad3e6b6eddb975ef","name":"Negative test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"69f67038b11a4861","name":"Testing row_sum_odd_numbers function","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"3f3a4afa0166112e","name":"Testing zero_fuel function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"864ee426bf422b09","name":"Testing permute_a_palindrome (positive)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5961784f4ddfa34","name":"Testing 'thirt' function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fa689144ccb2725","name":"Two smallest numbers in the start of the list","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"40b9b78f2d258cf9","name":"Testing zeros function","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"status":"passed","severity":"normal"},{"uid":"b40f27be3da7edd7","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"afc8e5dacd30bc41","name":"fix_the_meerkat function function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"28baf5593cc14310","name":"You are given two angles -> find the 3rd.","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"30779503c72bcec6","name":"Zero","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f55783c4fa90131e","name":"Simple test for invalid parentheses","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a82791553e70088","name":"Testing century function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6a651d904577cf4","name":"Testing 'DefaultList' class: pop","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"d06d6d8db945d4d7","name":"Testing Calculator class","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","severity":"normal"},{"uid":"e96aee50481acdd6","name":"Test with one char only","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"status":"passed","severity":"normal"},{"uid":"a1c87b2c2a6c0bb7","name":"Testing period_is_late function (negative)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"be79a08ed18e426","name":"Testing create_city_map function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec58e61448a9c6a8","name":"test_solution_medium","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a81b8ca7a7877717","name":"Testing Walker class - position property from negative grids","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","severity":"critical"},{"uid":"5880c730022f01ee","name":"Testing monkey_count function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"a95c24b51d5c9432","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"cbb9443875889585","name":"Testing check_root function","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5898a8468d0cd4","name":"String with mixed type of chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8680b20dd7e19d5","name":"Square numbers (positive)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"ca1eccae180a083e","name":"Testing Decoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"af16ce1f4d774662","name":"Testing 'is_isogram' function","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c460b7e756cd57","name":"Positive test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"a92222b0b7f4d601","name":"Testing make_readable function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"873ec1972fa36468","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cc2024d730e5f8a","name":"Test for valid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"19443f8320b2694c","name":"Testing alphanumeric function","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4915582d5908ed3","name":"Non is expected","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"21221b4a48a21055","name":"test_sequence","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5488ed1b45d5018a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4cb6a94c77f28ce","name":"Testing shark function (positive)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"4df2e31ca734bf47","name":"test_solution_big","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6d917e3e4d702f23","name":"Testing remove_char function","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d49801d4e6b4921","name":"Testing next_bigger function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"9eaae816682ea6e3","name":"Should return 'Fail!'s","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/history-trend.json b/allure-report/widgets/history-trend.json index d99a7683cdf..478bb43717a 100644 --- a/allure-report/widgets/history-trend.json +++ b/allure-report/widgets/history-trend.json @@ -1 +1 @@ -[{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":206,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":204,"unknown":0,"total":219}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":203,"unknown":0,"total":218}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":201,"unknown":0,"total":215}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":200,"unknown":0,"total":213}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":198,"unknown":0,"total":211}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":197,"unknown":0,"total":210}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":196,"unknown":0,"total":209}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":192,"unknown":0,"total":205}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":191,"unknown":0,"total":204}},{"data":{"failed":0,"broken":0,"skipped":9,"passed":190,"unknown":0,"total":199}}] \ No newline at end of file +[{"data":{"failed":0,"broken":0,"skipped":11,"passed":221,"unknown":0,"total":232}},{"data":{"failed":0,"broken":0,"skipped":11,"passed":216,"unknown":0,"total":227}},{"data":{"failed":0,"broken":0,"skipped":11,"passed":215,"unknown":0,"total":226}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":207,"unknown":0,"total":221}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":206,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":205,"unknown":0,"total":220}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":204,"unknown":0,"total":219}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":203,"unknown":0,"total":218}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":15,"passed":202,"unknown":0,"total":217}},{"data":{"failed":0,"broken":0,"skipped":14,"passed":201,"unknown":0,"total":215}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":200,"unknown":0,"total":213}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":198,"unknown":0,"total":211}},{"data":{"failed":0,"broken":0,"skipped":13,"passed":197,"unknown":0,"total":210}}] \ No newline at end of file diff --git a/allure-report/widgets/retry-trend.json b/allure-report/widgets/retry-trend.json index d047486576f..42e5e4b88a8 100644 --- a/allure-report/widgets/retry-trend.json +++ b/allure-report/widgets/retry-trend.json @@ -1 +1 @@ -[{"data":{"run":222,"retry":219}},{"data":{"run":221,"retry":8096}},{"data":{"run":221,"retry":7876}},{"data":{"run":220,"retry":7654}},{"data":{"run":220,"retry":7435}},{"data":{"run":220,"retry":7216}},{"data":{"run":219,"retry":6998}},{"data":{"run":218,"retry":6781}},{"data":{"run":217,"retry":6565}},{"data":{"run":217,"retry":6349}},{"data":{"run":217,"retry":6133}},{"data":{"run":217,"retry":6133}},{"data":{"run":215,"retry":5919}},{"data":{"run":213,"retry":5493}},{"data":{"run":211,"retry":5073}},{"data":{"run":210,"retry":4864}},{"data":{"run":209,"retry":4447}},{"data":{"run":205,"retry":4243}},{"data":{"run":204,"retry":4039}},{"data":{"run":199,"retry":3432}}] \ No newline at end of file +[{"data":{"run":232,"retry":882}},{"data":{"run":227,"retry":659}},{"data":{"run":226,"retry":437}},{"data":{"run":222,"retry":219}},{"data":{"run":222,"retry":219}},{"data":{"run":221,"retry":8096}},{"data":{"run":221,"retry":7876}},{"data":{"run":220,"retry":7654}},{"data":{"run":220,"retry":7435}},{"data":{"run":220,"retry":7216}},{"data":{"run":219,"retry":6998}},{"data":{"run":218,"retry":6781}},{"data":{"run":217,"retry":6565}},{"data":{"run":217,"retry":6349}},{"data":{"run":217,"retry":6133}},{"data":{"run":217,"retry":6133}},{"data":{"run":215,"retry":5919}},{"data":{"run":213,"retry":5493}},{"data":{"run":211,"retry":5073}},{"data":{"run":210,"retry":4864}}] \ No newline at end of file diff --git a/allure-report/widgets/severity.json b/allure-report/widgets/severity.json index cc063ceb2dc..2cff6aa4497 100644 --- a/allure-report/widgets/severity.json +++ b/allure-report/widgets/severity.json @@ -1 +1 @@ -[{"uid":"469371686ca36a1e","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"c11bd2bbb0f17cd9","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"2d65aaadaa20d5c2","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"a064a48d91c28f13","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f0c848519588d2dc","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"a3beec2fa9a311c4","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"781079de643a720d","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd298347a8b67e93","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"9710b9a44c2e3c82","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c4e292a782b80e3","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8cfd8001c2b32fd","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"c63189b867db5809","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"cf2235e5886d8954","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"1152e12f582a6d83","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"a921030da8c9a520","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"fbbb69f84c1b433f","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"d65c16a1b47d468e","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"6fbcaa806475fb37","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"564be6d750e08ee1","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad08cb0fb6eef203","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"7e0e76f32ac7ce4e","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"73d92f8f0c07772d","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"3151ebffdc64c952","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"fb3ce43e36479ba0","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"a37b17c93d1df521","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"b32352034ba0a692","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c8034b1a6365fc2","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a85b974bace8b60","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"acc95e26a53d92ff","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"af5a357d104e13f2","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"85d9d1820cce2f7e","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f5877935ced5c5","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"8b31152bd581baeb","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"e5ac2209dd79eabb","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a2cb5446a34df86","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e8c0121e99e8c0","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"91e3c1348f0cd9d2","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"aee4538f6230f980","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"a7151a5672bbc2f6","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"c301f45b01d7d10f","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8b2e451486f6a25","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"a80b9adf611eb67d","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ecd182a341dd7b4","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"204a2114486cc2f9","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"380e12b965b39180","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"ccf5a8c46639d0ec","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cbc31ebfbb61905","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"5653676293d9b683","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"7f23a2b3d247ad31","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d3e842542b066f3","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"79e39b6957e2fa23","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"547f04beeb8e83b4","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"34569132e9551c33","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"928532982127bba0","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"c7f51c235702ff2b","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"c462a5b80d49c98b","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c5d99461aa2603","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c3877c30e625752","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4c5ff18f0370583","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1c92b73c681a87bf","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fba83a53ac553ac","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"},{"uid":"3bd61bc704b417e2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"34febd97f08d8df7","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"6a770856a19e186","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"f0e71551541527fc","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"863d982a547ab48a","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb5e32abc058341d","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"6827fd264cb4d263","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"be5a8376fdcba717","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"620b2589fb870406","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"682a94239c4fcbde","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5a3f0d4d035c3a4","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"647dfe698e2a6fdb","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"6bb1a909958ad3a2","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"89ceeba296a3ea3","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"57bbb6ca73efd1b4","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"41a3f66c1c393960","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb032b53923bc0e9","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef1cf7383671b63","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"f921307aa8b56caa","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ea60f3a146e3d51","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"a8ada246e9141e4e","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"4359475f5ec554bd","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"de314943cf5bdd10","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1e70dabc7dad91e","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"5329936079819472","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5b1db39220bbcf9","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc3f48cf5f0bf9f","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"70e9bff1f7e13160","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"30cacf1f2fb31f20","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"521b14729542d5c4","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"cbc7a26721b4acfd","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"84ae1ddd95d9c6d3","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"257a5ad111bd69a7","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f1acd3007b7873ed","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"164087ecc666d9a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"1d2c6842ef40288f","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"689de206e9df0991","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8f6e0603b79e82b","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"66511dda8143933e","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"91ff78dc5a767b91","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad12195e4f930686","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"29266ed99d46b2a","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"409595d25cc5d60c","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"b867e5092f796e5b","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8e9539521c4ca00","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"99f691b62c390084","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"627a7fd2fe38a284","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"f80f9bf6821c7c25","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"aca9d99cb0e5842e","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"d6d06cbc227917e","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"b3f7088fed8dedd7","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ded43d0fdf317ac","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"de3c176bdacd6cb0","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"53d75ff9d73daf75","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"291bd12f30edb56f","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"dba3101c45ee1611","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"742a65a772f90af2","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f2ec06c200d3086","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"a5e3b3442b4ab9dd","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"ecd029e0f98c606","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"df3147d31fee6968","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"46f01e6c3f72b063","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7106989a12e3c0a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"f0d79dba84dbdf82","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e7abb728f95d63f","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f91e5f44fcbcaa","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"281344c06cab651e","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"93b3042e12ae0dc2","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"6ce4bba2ff4664c2","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cad1df85b3a49c","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"776a48c95cfacbf7","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f890ca68cdfc481","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"74afb414b6e0cabc","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"43c0068fe0a1265e","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"324c41918ed3c26a","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"f52a489cb0add672","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"b14acb4de8eb0e3a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"dfb4af6de633e98","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"913459f449cde9ee","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"cee46a1116cde2e1","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"a42793a5da57f5c7","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1585e7c78fd8d06","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"4260c429366ea20f","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"66f1b8d1e5ed1dbe","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cef5a6f9a11a927","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"9275e1d85a023003","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"62bf772c3a2aa5d2","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c08b2480b8f26290","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c2a3e42bb3933c8","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"a83637127d81f7d9","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"a0cc441d7d4eb4dd","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"b98125cb150cd794","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ba8a4247f4c6307","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef3e1da7f90eb82","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"af191d67a3f53ad3","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"3edaeb1c9114b312","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"8fac702aa93d2093","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"b864bfcb14132f63","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"e650d3e05f6d005c","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ef0ca25b0e8e9c5","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"900ed6bd99df3d56","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"c322e80c6cd8da83","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2ed8dfd7ca5a3d13","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"2030ea00b6998f67","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"f3b283ff21d85aec","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"e798d2f5cc38e024","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"aac9dbbaca38b054","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"a2776f2124bd86f4","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"b843b5b7994550ed","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"2f09ef1a750aec43","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"3d238edf9c2316ff","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d90f23892be7ac3","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"62692a0c3dd76e6c","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"3fa15071b1bee987","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"bdcb772653d8aad","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cbeef874f8f5965","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"396df158495e2556","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ecfe278b9d03b10","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b49391a0624f51c","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"578c3a6cd3e7e40f","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c281d5272513bfd","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"6af8370630444180","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1c4cfcd59974ea","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"a14fdddc74cd287e","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"db7b4c897ddcf1a6","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"966dbbb37b9c251e","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f4f9e94ec6d4f1e","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"af6e405f57c78056","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"611b4f8cf836294a","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"a33fb2570aec1823","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e4b0e05a0862f7e","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"fed28c7a9755def6","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"73a0aa79bef78acd","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"afdaa298aab7eba8","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f2317d20109e13","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"4bdc75ea73bb042","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"b78c37ec3b0f496f","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c64823a2a73f974","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"af3c309699fc2b8b","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab402f3759df06f","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"ce5b44ba32daaf31","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0ff31e127206139","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"6881087bd4c8b374","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"92b17e5074e54ef7","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"bc3230f80ad8864d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"f09191f837671677","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"e885db3276511b9a","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a6a3e5884b319c","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d1621a20d6f8fe7","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"d837297408a13c1e","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"e943739be0c776f3","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"57946e73be805e2a","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"16026a681cee6bae","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"3be027c950740ddd","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"36b9e5073b489f49","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"63cbfe00daba1c69","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5da6537a014533","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"62e4f6698c2439c","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0e2de6ef36ce602","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"14e29fc6b385d9d8","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1ed75effe27f7a1","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"9b651a3e27842d38","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0cba34627dad034","name":"Test for invalid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"5238b22fc20ccda9","name":"Testing easy_line function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e884f6ea55b7c35","name":"Wolf at the beginning of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"b40f27be3da7edd7","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"f55783c4fa90131e","name":"Simple test for invalid parentheses","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"f39847014d01db85","name":"Testing list_squared function","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"status":"passed","severity":"normal"},{"uid":"ad642268f112be60","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"5488ed1b45d5018a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"a81b8ca7a7877717","name":"Testing Walker class - position property from negative grids","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","severity":"critical"},{"uid":"bb8e119491d2ebc3","name":"Negative test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"f51b45f6ebc18bdf","name":"Testing Sudoku class","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"f56ae5fa4f278c43","name":"Testing 'DefaultList' class: extend","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"213536a8a5597e91","name":"Testing compute_ranks","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"9ba260a0149e6341","name":"Testing increment_string function","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"status":"passed","severity":"normal"},{"uid":"913fbd5c2da31308","name":"Testing solution function","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","severity":"normal"},{"uid":"47e3461a4e252fc1","name":"Testing take function","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c379ae83853bb2a","name":"Should return 'Publish!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"733b2334645f5c42","name":"Testing odd_row function","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","severity":"normal"},{"uid":"28baf5593cc14310","name":"You are given two angles -> find the 3rd.","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"3a516b9dc7b53625","name":"Testing 'greek_comparator' function","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"99e95613ed424b35","name":"Testing sum_of_intervals function","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d53eb58d77047e8","name":"Testing first_non_repeating_letter function","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","severity":"normal"},{"uid":"293f48722d8450df","name":"All chars are in mixed case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"96938210802b960f","name":"test_triangle","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","severity":"normal"},{"uid":"22bb7ddce4971121","name":"Testing pig_it function","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492c358ecb2902d","name":"Non consecutive number should be returned","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"af3a43fc31649664","name":"Testing sum_for_list function","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"status":"passed","severity":"normal"},{"uid":"157d23c0aff9e075","name":"Testing duplicate_encode function","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","severity":"normal"},{"uid":"5364303890f7a5a1","name":"Testing 'feast' function","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"69d8ca152b73c452","name":"Testing 'save' function: negative","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"f807c10786110eac","name":"Large lists","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"be79a08ed18e426","name":"Testing create_city_map function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"a95c24b51d5c9432","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4c3bd7788c9f57d","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b36ed636679609b","name":"Square numbers (positive)","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"status":"passed","severity":"normal"},{"uid":"e08a8a15da9b3ad","name":"test_josephus_survivor","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"status":"skipped","severity":"normal"},{"uid":"7e7534020c406c41","name":"Testing swap_values function","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6520bfb9bc036e4","name":"Testing Warrior class >>> tom","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"1fb0e4ddfae0bf06","name":"Testing agents_cleanup function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"44141b5da145c70a","name":"Testing 'DefaultList' class: append","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de9285990285353","name":"Testing alphabet_war function","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","severity":"normal"},{"uid":"f2a1a9d494a0859","name":"Testing top_3_words function","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"72c2edc2055d0da7","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"52f852c4238fea22","name":"Testing 'vaporcode' function","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3592e93b232bc","name":"Testing 'solution' function","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9d827d0af3ba710","name":"Testing calc_combinations_per_row function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8789af2e0cead9e","name":"Wolf at the end of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"6d917e3e4d702f23","name":"Testing remove_char function","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"9eaae816682ea6e3","name":"Should return 'Fail!'s","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa7d2e5e86b66673","name":"String with no alphabet chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3f7ea473e691d3","name":"Testing the 'sort_array' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2acdc5e027859f4","name":"Testing anagrams function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac824f903545a6e7","name":"Testing move_zeros function","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"status":"passed","severity":"normal"},{"uid":"f0d7d5d837d1a81d","name":"Testing 'save' function: positive","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cc2024d730e5f8a","name":"Test for valid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"7250652c2d8bbae5","name":"AND logical operator","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fa689144ccb2725","name":"Two smallest numbers in the start of the list","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"506e0ee504d23a05","name":"Testing advice function","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"status":"passed","severity":"normal"},{"uid":"ce6714fc18aff8ec","name":"Testing hoop_count function (negative test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b0b5de93d5cb12","name":"Testing easy_line function exception message","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"cbb9443875889585","name":"Testing check_root function","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","severity":"normal"},{"uid":"24f0384efd85ae74","name":"Testing share_price function","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"status":"passed","severity":"normal"},{"uid":"c245bb8192a35073","name":"Positive test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"a088624abb606e0e","name":"Testing make_class function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3654581f89b5576","name":"Testing the 'unique_in_order' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3fc5966ad47411","name":"Testing 'letter_count' function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"21221b4a48a21055","name":"test_sequence","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"skipped","severity":"normal"},{"uid":"7ea8a8dc382128a4","name":"test_smallest","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5c460b7e756cd57","name":"Positive test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"a5a7f52be4bf7369","name":"Testing shark function (negative)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"8c4575be21ff0ded","name":"Testing Warrior class >>> bruce_lee","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"80b7e762ad299367","name":"Testing array_diff function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"d06d6d8db945d4d7","name":"Testing Calculator class","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1326d9a3ad9ddfb","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb8f6057b9598daa","name":"Non square numbers (negative)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c66d03c44b01cf6","name":"Testing the 'group_cities' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"30779503c72bcec6","name":"Zero","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"25c9ba69d5ac48c6","name":"Testing 'factorial' function","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"af16ce1f4d774662","name":"Testing 'is_isogram' function","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ac65e8dc17d86a","name":"Testing litres function with various test inputs","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffb8e8f4eed50d14","name":"Testing shark function (positive)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"f06328bb4646abe9","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e6eb35888cc4f59","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"1cbe6a610fbdfd6","name":"Testing binary_to_string function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"5bee7e36f6e76857","name":"All chars are in lower case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8c57e21dd6fea81","name":"Testing 'summation' function","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"25eb791ee007f15b","name":"Testing Potion class","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"1137568979e0ed3a","name":"Testing 'longest_repetition' function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4cae88de9afaa55","name":"Test that no_space function removes the spaces","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4e7ccb7c6ccb848","name":"Testing men_from_boys function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"40b9b78f2d258cf9","name":"Testing zeros function","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"status":"passed","severity":"normal"},{"uid":"b92f0db6c4ee4ff0","name":"Testing format_duration","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"218b156daee27f08","name":"Testing largestPower function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"5647d5db4078d707","name":"Testing two_decimal_places function","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6b67890527d37e6","name":"Testing the 'valid_braces' function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"4cc7d24b84024142","name":"Find the int that appears an odd number of times","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"c515ef635fa26df1","name":"Testing validate_battlefield function","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"status":"passed","severity":"normal"},{"uid":"644c808df55456e9","name":"Testing Encoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"456a7345e9aeb905","name":"'multiply' function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"ece5bd16ef8bbe52","name":"Testing to_table function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"3f2e19b818fd15f5","name":"Testing 'generate_hashtag' function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a5d0954bb249b69","name":"test_permutations","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2a3aa78afffa487b","name":"Test with empty string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"43a52f18fb3b8136","name":"Testing 'snail' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"101b76d3a18bb4c3","name":"Testing string_transformer function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"3f3a4afa0166112e","name":"Testing zero_fuel function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa0fd3e8d8009a95","name":"Testing stock_list function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff093181cede851","name":"Testing 'DefaultList' class: remove","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"52e55a2445119fdd","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0dd8dfaed76aa75","name":"Testing length function","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74116cee1d73fd7","name":"a or b is negative","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"8146fd50051ac96b","name":"a and b are equal","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"cef1ed2aef537de7","name":"a and b are equal","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"555817f2fd5ba68f","name":"'multiply' function verification with random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","severity":"normal"},{"uid":"4223e436b2847599","name":"Testing calculate_damage function","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"46352cf5111d5c61","name":"XOR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"482cc1b462231f44","name":"test_line_negative","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"skipped","severity":"normal"},{"uid":"83ae1189d3669b33","name":"Testing the 'pyramid' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"91c1d8a1fc37f84","name":"a an b are positive numbers","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4cb6a94c77f28ce","name":"Testing shark function (positive)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec1f79d5effe1aa9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a82791553e70088","name":"Testing century function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"a92222b0b7f4d601","name":"Testing make_readable function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2cfb77eef4360e","name":"String with no duplicate chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"26189d3cfda1b8d1","name":"Testing calc function","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb005e45e7b312b5","name":"Testing to_alternating_case function","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f90fc4edd70bea","name":"Testing next_smaller function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"78aec59881bd461e","name":"Simple test for empty string.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd56af2e749c4e8a","name":"Testing first_non_repeated function with various inputs","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"7940a8ba615e27f7","name":"Testing string_to_array function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d64a30c387b7743","name":"Testing growing_plant function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"f87e2580dd045df5","name":"Testing 'mix' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1393951861e51a9","name":"Testing solve function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"469fb46dbe1a31d","name":"Testing permute_a_palindrome (negative)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"873ec1972fa36468","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0b6dccad411741e","name":"Testing the 'solution' function","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0604fc927a7480","name":"Negative non consecutive number should be returned","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5961784f4ddfa34","name":"Testing 'thirt' function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"8572ffe92ddcaa11","name":"Testing epidemic function","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5ba84846c075db5","name":"Testing 'count_sheeps' function: bad input","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"5814d63d4b392228","name":"move function tests","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"32eaf956310a89b7","name":"Testing invite_more_women function (negative)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da8c6de16bb179d","name":"Testing 'solution' function","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1c87b2c2a6c0bb7","name":"Testing period_is_late function (negative)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"67535419d885cbd9","name":"Testing 'DefaultList' class: insert","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"6f178467aa4ed9b7","name":"'multiply' function verification with one element list","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"status":"passed","severity":"normal"},{"uid":"8878dccf56d36ba6","name":"Testing the 'find_missing_number' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6a651d904577cf4","name":"Testing 'DefaultList' class: pop","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"971c2aa5dd36f62c","name":"Testing max_multiple function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec58e61448a9c6a8","name":"test_solution_medium","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ad3e6b6eddb975ef","name":"Negative test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"315e825b7f114d5b","name":"Testing all_fibonacci_numbers function","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"status":"passed","severity":"normal"},{"uid":"2571a6d17171a809","name":"Testing digital_root function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7ac97a954c5e722","name":"Testing length function where head = None","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee5910cfe65a88ee","name":"Testing valid_parentheses function","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5898a8468d0cd4","name":"String with mixed type of chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1e3818ccb62ed24","name":"Non square numbers (negative)","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"230fd42f20a11e18","name":"Testing number_of_sigfigs function","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"status":"passed","severity":"normal"},{"uid":"49244d740987433","name":"Testing password function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"d518579b8137712e","name":"Should return 'I smell a series!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"5880c730022f01ee","name":"Testing monkey_count function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"48f19bb58dd1432f","name":"Testing easy_diagonal function","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"status":"passed","severity":"normal"},{"uid":"14c26803c1139e78","name":"Testing 'count_sheeps' function: empty list","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a6bb93adc2b9500","name":"OR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8d9a4d573dbda2b","name":"Testing flatten function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"95500b18da61d76","name":"Testing 'solution' function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"5496efe2fd3e353","name":"goals function verification","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"afc8e5dacd30bc41","name":"fix_the_meerkat function function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"e96aee50481acdd6","name":"Test with one char only","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"status":"passed","severity":"normal"},{"uid":"da807d1d651bf07b","name":"All chars are in upper case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"badb2c1a8c5e2d2d","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"db9b592f660c3c08","name":"Testing 'numericals' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff9cf70b259ca21","name":"Testing likes function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd83f8828bfb391","name":"Testing 'order' function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"31ce0fdb81c2daf6","name":"Testing domain_name function","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","severity":"normal"},{"uid":"4df2e31ca734bf47","name":"test_solution_big","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"37fbb0401b01604d","name":"Testing hoop_count function (positive test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"19443f8320b2694c","name":"Testing alphanumeric function","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2af0876e7f45a7f","name":"'multiply' function verification: lists with multiple digits","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"e42b69525abdede6","name":"Testing make_upper_case function","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c8559b634a76bd8","name":"Testing validSolution","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"8eb80b15a6d6b848","name":"Testing is_prime function","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"status":"passed","severity":"normal"},{"uid":"d20d06b45fb65ddb","name":"Testing tickets function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec0c7de9a70a5f5e","name":"Testing toJadenCase function (positive)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b2e8453406c3f","name":"Testing 'shortest_job_first(' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d9d773987a3ac09","name":"String with no duplicate chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"ae87022eb9b205bd","name":"'multiply' function verification with empty list","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"f83b86d7cbc0ffa1","name":"String alphabet chars and spaces","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74a1a4c19be5344","name":"Testing permute_a_palindrome (empty string)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"564bcc936cf15d1a","name":"Testing is_palindrome function","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"23b533c70baf95c9","name":"Testing check_exam function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b5df6c66b23ba75","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"status":"passed","severity":"normal"},{"uid":"eb94d03877c16bb4","name":"Testing Walker class - position property from positive grids","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"69f67038b11a4861","name":"Testing row_sum_odd_numbers function","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"ead644ae8ee031c3","name":"Testing count_letters_and_digits function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"823dff07664aaa4","name":"powers function should return an array of unique numbers","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"e4473b95f40f5c92","name":"Testing toJadenCase function (negative)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"864ee426bf422b09","name":"Testing permute_a_palindrome (positive)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d49801d4e6b4921","name":"Testing next_bigger function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"777b1d9b55eb3ae9","name":"String with alphabet chars only","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"e578dac1473f78ec","name":"Wolf in the middle of the queue","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"normal"},{"uid":"afa4196b56245753","name":"Testing decipher_this function","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"status":"passed","severity":"normal"},{"uid":"68fbe283acac1b6a","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"c678c03e12583e98","name":"Testing Battle method","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"984b8a80ce69773d","name":"Testing encrypt_this function","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"690df5b9e2e97d3","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"c62025a79b33eb3","name":"test_solution_empty","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ca1eccae180a083e","name":"Testing Decoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"43578fd4f74ce5d9","name":"test_ips_between","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"skipped","severity":"normal"},{"uid":"4990a9f9fb7d9809","name":"Simple test for valid parentheses","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"status":"passed","severity":"normal"},{"uid":"8db7c8bf0abe07bc","name":"Testing two_decimal_places function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"1cc5ce778c99d98","name":"get_size function tests","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"fef6b9be2b6df65c","name":"Test with regular string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8680b20dd7e19d5","name":"Square numbers (positive)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"33789c02e7e07041","name":"Negative numbers","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"c50649c997228fe6","name":"Testing set_alarm function","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb676676627eae5f","name":"test_line_positive","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f4915582d5908ed3","name":"Non is expected","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b2ccbd851ec600","name":"Verify that greet function returns the proper message","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d07449717f6193c","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"8caf8fe76e46aa0f","name":"Testing gap function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"b59318a9c97ef9f1","name":"STesting enough function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"c9c9a6a75f3a249f","name":"Testing checkchoose function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"7aa3fbfc8218c54e","name":"Testing spiralize function","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"a90239b6ef90f6a6","name":"Testing done_or_not function","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1e65f294db5f89","name":"test_solution_basic","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"b0395834a1dc7266","name":"Testing calculate function","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"status":"passed","severity":"normal"},{"uid":"d49eccd60ce84feb","name":"Testing dir_reduc function","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a970025f2147b3a","name":"Testing invite_more_women function (positive)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"5503b0de9149b0f0","name":"Testing period_is_late function (positive)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"902288cde0f2109a","name":"Testing 'parts_sums' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/status-chart.json b/allure-report/widgets/status-chart.json index 8502c5270a0..32aa2b3e6f3 100644 --- a/allure-report/widgets/status-chart.json +++ b/allure-report/widgets/status-chart.json @@ -1 +1 @@ -[{"uid":"30cacf1f2fb31f20","name":"Testing permute_a_palindrome (empty string)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1ed75effe27f7a1","name":"'multiply' function verification with one element list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"aca9d99cb0e5842e","name":"Testing alphabet_war function","time":{"start":1724735127438,"stop":1724735127453,"duration":15},"status":"passed","severity":"normal"},{"uid":"409595d25cc5d60c","name":"Testing format_duration","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"43c0068fe0a1265e","name":"Testing 'DefaultList' class: remove","time":{"start":1724735128063,"stop":1724735128078,"duration":15},"status":"passed","severity":"normal"},{"uid":"6ce4bba2ff4664c2","name":"Testing Battle method","time":{"start":1724735127407,"stop":1724735127407,"duration":0},"status":"passed","severity":"normal"},{"uid":"dfb4af6de633e98","name":"powers function should return an array of unique numbers","time":{"start":1724735129289,"stop":1724735129289,"duration":0},"status":"passed","severity":"normal"},{"uid":"69f91e5f44fcbcaa","name":"Testing is_palindrome function","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"a8ada246e9141e4e","name":"Testing duplicate_encode function","time":{"start":1724735128094,"stop":1724735128094,"duration":0},"status":"passed","severity":"normal"},{"uid":"de314943cf5bdd10","name":"AND logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"324c41918ed3c26a","name":"Testing the 'solution' function","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"passed","severity":"normal"},{"uid":"74afb414b6e0cabc","name":"Testing anagrams function","time":{"start":1724735127938,"stop":1724735127938,"duration":0},"status":"passed","severity":"normal"},{"uid":"7cef5a6f9a11a927","name":"Large lists","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"3cad1df85b3a49c","name":"Testing toJadenCase function (negative)","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f2317d20109e13","name":"Testing Warrior class >>> tom","time":{"start":1724735127422,"stop":1724735127422,"duration":0},"status":"passed","severity":"normal"},{"uid":"913459f449cde9ee","name":"Testing next_smaller function","time":{"start":1724735127235,"stop":1724735127250,"duration":15},"status":"passed","severity":"normal"},{"uid":"776a48c95cfacbf7","name":"Testing gap function","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"8ded43d0fdf317ac","name":"Testing string_to_array function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"c0e2de6ef36ce602","name":"Testing two_decimal_places function","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"6af8370630444180","name":"'multiply' function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f2ec06c200d3086","name":"Testing easy_diagonal function","time":{"start":1724735128094,"stop":1724735128742,"duration":648},"status":"passed","severity":"normal"},{"uid":"291bd12f30edb56f","name":"All chars are in mixed case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"bdcb772653d8aad","name":"Testing move_zeros function","time":{"start":1724735127844,"stop":1724735127844,"duration":0},"status":"passed","severity":"normal"},{"uid":"a83637127d81f7d9","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"7d1621a20d6f8fe7","name":"Testing Potion class","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"16026a681cee6bae","name":"Testing 'snail' function","time":{"start":1724735127266,"stop":1724735127266,"duration":0},"status":"passed","severity":"normal"},{"uid":"6827fd264cb4d263","name":"test_solution_big","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ecd029e0f98c606","name":"Testing digital_root function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"9275e1d85a023003","name":"Testing 'vaporcode' function","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"46f01e6c3f72b063","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7106989a12e3c0a","name":"Testing easy_line function exception message","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"d837297408a13c1e","name":"Testing row_sum_odd_numbers function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"627a7fd2fe38a284","name":"Testing zero_fuel function","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"5cbeef874f8f5965","name":"Negative numbers","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8e9539521c4ca00","name":"Testing domain_name function","time":{"start":1724735127500,"stop":1724735127500,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5da6537a014533","name":"Testing remove_char function","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"dba3101c45ee1611","name":"Testing share_price function","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"d8f6e0603b79e82b","name":"Testing valid_parentheses function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"53d75ff9d73daf75","name":"Negative non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d3e842542b066f3","name":"Testing checkchoose function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"14e29fc6b385d9d8","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"281344c06cab651e","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"d6d06cbc227917e","name":"Testing calc function","time":{"start":1724735127122,"stop":1724735127141,"duration":19},"status":"passed","severity":"normal"},{"uid":"5e4b0e05a0862f7e","name":"Negative test cases for gen_primes function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"380e12b965b39180","name":"Non square numbers (negative)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"611b4f8cf836294a","name":"Testing two_decimal_places function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2c6842ef40288f","name":"Testing century function","time":{"start":1724735129383,"stop":1724735129383,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8a6a3e5884b319c","name":"Testing 'summation' function","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f4f9e94ec6d4f1e","name":"Testing calculate function","time":{"start":1724735129008,"stop":1724735129024,"duration":16},"status":"passed","severity":"normal"},{"uid":"257a5ad111bd69a7","name":"test_smallest","time":{"start":1724735127656,"stop":1724735127656,"duration":0},"status":"skipped","severity":"normal"},{"uid":"521b14729542d5c4","name":"Testing sum_for_list function","time":{"start":1724735127313,"stop":1724735127391,"duration":78},"status":"passed","severity":"normal"},{"uid":"5329936079819472","name":"Should return 'Publish!'","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c92b73c681a87bf","name":"Zero","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef1cf7383671b63","name":"Testing 'factorial' function","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e7abb728f95d63f","name":"Testing make_readable function","time":{"start":1724735127688,"stop":1724735127688,"duration":0},"status":"passed","severity":"normal"},{"uid":"f921307aa8b56caa","name":"Testing permute_a_palindrome (positive)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"e798d2f5cc38e024","name":"Testing create_city_map function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"689de206e9df0991","name":"Testing first_non_repeating_letter function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"3be027c950740ddd","name":"XOR logical operator","time":{"start":1724735129586,"stop":1724735129602,"duration":16},"status":"passed","severity":"normal"},{"uid":"df3147d31fee6968","name":"Testing done_or_not function","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"passed","severity":"normal"},{"uid":"c301f45b01d7d10f","name":"Testing 'greek_comparator' function","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"cbc7a26721b4acfd","name":"Testing hoop_count function (negative test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"4260c429366ea20f","name":"String with no alphabet chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b49391a0624f51c","name":"Testing encrypt_this function","time":{"start":1724735128758,"stop":1724735128758,"duration":0},"status":"passed","severity":"normal"},{"uid":"acc95e26a53d92ff","name":"Testing sum_of_intervals function","time":{"start":1724735127391,"stop":1724735127391,"duration":0},"status":"passed","severity":"normal"},{"uid":"63cbfe00daba1c69","name":"Testing done_or_not function","time":{"start":1724735127922,"stop":1724735127922,"duration":0},"status":"passed","severity":"normal"},{"uid":"ab402f3759df06f","name":"Testing the 'unique_in_order' function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"57946e73be805e2a","name":"Testing likes function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"6bb1a909958ad3a2","name":"move function tests","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"36b9e5073b489f49","name":"Testing validate_battlefield function","time":{"start":1724735127157,"stop":1724735127157,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5a3f0d4d035c3a4","name":"Testing shark function (negative)","time":{"start":1724735129539,"stop":1724735129539,"duration":0},"status":"passed","severity":"normal"},{"uid":"afdaa298aab7eba8","name":"Testing 'mix' function","time":{"start":1724735127282,"stop":1724735127282,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb032b53923bc0e9","name":"a an b are positive numbers","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"af3c309699fc2b8b","name":"Testing validSolution","time":{"start":1724735127297,"stop":1724735127297,"duration":0},"status":"passed","severity":"normal"},{"uid":"3bd61bc704b417e2","name":"Testing 'is_isogram' function","time":{"start":1724735129149,"stop":1724735129149,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb3ce43e36479ba0","name":"Testing easy_line function","time":{"start":1724735129071,"stop":1724735129071,"duration":0},"status":"passed","severity":"normal"},{"uid":"c462a5b80d49c98b","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ecfe278b9d03b10","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1724735128930,"stop":1724735128930,"duration":0},"status":"passed","severity":"normal"},{"uid":"b78c37ec3b0f496f","name":"Testing to_table function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8b2e451486f6a25","name":"'multiply' function verification with empty list","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"},{"uid":"863d982a547ab48a","name":"String with no duplicate chars","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"92b17e5074e54ef7","name":"test_starting_position_from_negatives","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"578c3a6cd3e7e40f","name":"Testing the 'group_cities' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"c7f51c235702ff2b","name":"Testing first_non_repeated function with various inputs","time":{"start":1724735129336,"stop":1724735129336,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8cfd8001c2b32fd","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"c322e80c6cd8da83","name":"test_solution_empty","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ce5b44ba32daaf31","name":"Testing swap_values function","time":{"start":1724735129680,"stop":1724735129680,"duration":0},"status":"passed","severity":"normal"},{"uid":"aac9dbbaca38b054","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1724735129305,"stop":1724735129305,"duration":0},"status":"passed","severity":"normal"},{"uid":"4c3877c30e625752","name":"Testing odd_row function","time":{"start":1724735128914,"stop":1724735128914,"duration":0},"status":"passed","severity":"normal"},{"uid":"f09191f837671677","name":"Testing 'solution' function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5e3b3442b4ab9dd","name":"Testing largestPower function","time":{"start":1724735129196,"stop":1724735129196,"duration":0},"status":"passed","severity":"normal"},{"uid":"fed28c7a9755def6","name":"Non is expected","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1c4cfcd59974ea","name":"a and b are equal","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"9d90f23892be7ac3","name":"Testing toJadenCase function (positive)","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"af6e405f57c78056","name":"Testing check_root function","time":{"start":1724735129008,"stop":1724735129008,"duration":0},"status":"passed","severity":"normal"},{"uid":"2ed8dfd7ca5a3d13","name":"Testing advice function","time":{"start":1724735127531,"stop":1724735127656,"duration":125},"status":"passed","severity":"normal"},{"uid":"e650d3e05f6d005c","name":"Testing pig_it function","time":{"start":1724735127875,"stop":1724735127875,"duration":0},"status":"passed","severity":"normal"},{"uid":"1ef3e1da7f90eb82","name":"Testing the 'sort_array' function","time":{"start":1724735128914,"stop":1724735128930,"duration":16},"status":"passed","severity":"normal"},{"uid":"a0cc441d7d4eb4dd","name":"String with alphabet chars only","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"564be6d750e08ee1","name":"You are given two angles -> find the 3rd.","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"469371686ca36a1e","name":"Testing string_transformer function","time":{"start":1724735128961,"stop":1724735128961,"duration":0},"status":"passed","severity":"normal"},{"uid":"2f09ef1a750aec43","name":"Testing is_prime function","time":{"start":1724735127828,"stop":1724735127844,"duration":16},"status":"passed","severity":"normal"},{"uid":"a2776f2124bd86f4","name":"goals function verification","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ba8a4247f4c6307","name":"Testing 'letter_count' function","time":{"start":1724735128016,"stop":1724735128016,"duration":0},"status":"passed","severity":"normal"},{"uid":"db7b4c897ddcf1a6","name":"Testing next_bigger function","time":{"start":1724735127235,"stop":1724735127235,"duration":0},"status":"passed","severity":"normal"},{"uid":"f3b283ff21d85aec","name":"Testing 'feast' function","time":{"start":1724735129695,"stop":1724735129695,"duration":0},"status":"passed","severity":"normal"},{"uid":"a80b9adf611eb67d","name":"Testing number_of_sigfigs function","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"62bf772c3a2aa5d2","name":"test_josephus_survivor","time":{"start":1724735127828,"stop":1724735127828,"duration":0},"status":"skipped","severity":"normal"},{"uid":"2030ea00b6998f67","name":"Positive test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"b14acb4de8eb0e3a","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129492,"stop":1724735129492,"duration":0},"status":"passed","severity":"normal"},{"uid":"85d9d1820cce2f7e","name":"Wolf in the middle of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"6881087bd4c8b374","name":"Non consecutive number should be returned","time":{"start":1724735129461,"stop":1724735129461,"duration":0},"status":"passed","severity":"normal"},{"uid":"84ae1ddd95d9c6d3","name":"Testing flatten function","time":{"start":1724735127672,"stop":1724735127672,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad12195e4f930686","name":"Testing invite_more_women function (positive)","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"ad08cb0fb6eef203","name":"test_solution_basic","time":{"start":1724735127469,"stop":1724735127469,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f80f9bf6821c7c25","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"b32352034ba0a692","name":"Should return 'Fail!'s","time":{"start":1724735129711,"stop":1724735129711,"duration":0},"status":"passed","severity":"normal"},{"uid":"4bdc75ea73bb042","name":"Testing 'save' function: positive","time":{"start":1724735129102,"stop":1724735129102,"duration":0},"status":"passed","severity":"normal"},{"uid":"9710b9a44c2e3c82","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"3151ebffdc64c952","name":"Testing litres function with various test inputs","time":{"start":1724735129555,"stop":1724735129570,"duration":15},"status":"passed","severity":"normal"},{"uid":"2d65aaadaa20d5c2","name":"test_triangle","time":{"start":1724735129039,"stop":1724735129039,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a85b974bace8b60","name":"Square numbers (positive)","time":{"start":1724735129352,"stop":1724735129352,"duration":0},"status":"passed","severity":"normal"},{"uid":"a921030da8c9a520","name":"Testing Sudoku class","time":{"start":1724735127422,"stop":1724735127438,"duration":16},"status":"passed","severity":"normal"},{"uid":"f0c848519588d2dc","name":"Testing 'save' function: negative","time":{"start":1724735129086,"stop":1724735129086,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb5e32abc058341d","name":"Testing 'longest_repetition' function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"bc3230f80ad8864d","name":"Testing Warrior class >>> bruce_lee","time":{"start":1724735127407,"stop":1724735127422,"duration":15},"status":"passed","severity":"normal"},{"uid":"781079de643a720d","name":"Testing make_upper_case function","time":{"start":1724735129602,"stop":1724735129602,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ea60f3a146e3d51","name":"Two smallest numbers in the start of the list","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"60f5877935ced5c5","name":"Testing list_squared function","time":{"start":1724735127688,"stop":1724735127813,"duration":125},"status":"passed","severity":"normal"},{"uid":"cf2235e5886d8954","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"62692a0c3dd76e6c","name":"Test that no_space function removes the spaces","time":{"start":1724735129633,"stop":1724735129633,"duration":0},"status":"passed","severity":"normal"},{"uid":"fbbb69f84c1b433f","name":"Testing 'solution' function","time":{"start":1724735129274,"stop":1724735129274,"duration":0},"status":"passed","severity":"normal"},{"uid":"a064a48d91c28f13","name":"test_solution_medium","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"skipped","severity":"normal"},{"uid":"91ff78dc5a767b91","name":"Testing make_class function","time":{"start":1724735129164,"stop":1724735129164,"duration":0},"status":"passed","severity":"normal"},{"uid":"928532982127bba0","name":"Positive test cases for gen_primes function testing","time":{"start":1724735129789,"stop":1724735129789,"duration":0},"status":"passed","severity":"critical"},{"uid":"966dbbb37b9c251e","name":"Wolf at the beginning of the queue","time":{"start":1724735129758,"stop":1724735129758,"duration":0},"status":"passed","severity":"normal"},{"uid":"d65c16a1b47d468e","name":"Testing dirReduc function","time":{"start":1724735127485,"stop":1724735127485,"duration":0},"status":"passed","severity":"normal"},{"uid":"f1acd3007b7873ed","name":"Test with empty string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"6fbcaa806475fb37","name":"test_permutations","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"skipped","severity":"normal"},{"uid":"99f691b62c390084","name":"Testing solution function","time":{"start":1724735127250,"stop":1724735127250,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c64823a2a73f974","name":"Testing 'solution' function","time":{"start":1724735127282,"stop":1724735127297,"duration":15},"status":"passed","severity":"normal"},{"uid":"c0ff31e127206139","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1724735128930,"stop":1724735128946,"duration":16},"status":"passed","severity":"normal"},{"uid":"a3beec2fa9a311c4","name":"Wolf at the end of the queue","time":{"start":1724735129742,"stop":1724735129742,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f23a2b3d247ad31","name":"Testing hoop_count function (positive test case)","time":{"start":1724735129570,"stop":1724735129570,"duration":0},"status":"passed","severity":"normal"},{"uid":"e1e70dabc7dad91e","name":"All chars are in upper case","time":{"start":1724735127984,"stop":1724735128000,"duration":16},"status":"passed","severity":"normal"},{"uid":"70e9bff1f7e13160","name":"Should return 'I smell a series!'","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"c63189b867db5809","name":"Testing growing_plant function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"4359475f5ec554bd","name":"Testing 'DefaultList' class: extend","time":{"start":1724735128047,"stop":1724735128047,"duration":0},"status":"passed","severity":"normal"},{"uid":"e885db3276511b9a","name":"String with mixed type of chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"66511dda8143933e","name":"Testing stock_list function","time":{"start":1724735128820,"stop":1724735128820,"duration":0},"status":"passed","severity":"normal"},{"uid":"c11bd2bbb0f17cd9","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd298347a8b67e93","name":"Testing take function","time":{"start":1724735129446,"stop":1724735129446,"duration":0},"status":"passed","severity":"normal"},{"uid":"62e4f6698c2439c","name":"String with no duplicate chars","time":{"start":1724735128789,"stop":1724735128789,"duration":0},"status":"passed","severity":"normal"},{"uid":"e943739be0c776f3","name":"Testing 'generate_hashtag' function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"3fa15071b1bee987","name":"Testing Encoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"29266ed99d46b2a","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1724735128946,"stop":1724735128946,"duration":0},"status":"passed","severity":"normal"},{"uid":"aee4538f6230f980","name":"Testing password function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffc3f48cf5f0bf9f","name":"STesting enough function","time":{"start":1724735129727,"stop":1724735129727,"duration":0},"status":"passed","severity":"normal"},{"uid":"396df158495e2556","name":"Testing calculate_damage function","time":{"start":1724735128883,"stop":1724735128883,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d238edf9c2316ff","name":"Verify that greet function returns the proper message","time":{"start":1724735129508,"stop":1724735129508,"duration":0},"status":"passed","severity":"normal"},{"uid":"164087ecc666d9a0","name":"Testing spiralize function","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"passed","severity":"critical"},{"uid":"b867e5092f796e5b","name":"Testing check_exam function","time":{"start":1724735129399,"stop":1724735129399,"duration":0},"status":"passed","severity":"normal"},{"uid":"34febd97f08d8df7","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5b1db39220bbcf9","name":"Testing permute_a_palindrome (negative)","time":{"start":1724735128868,"stop":1724735128868,"duration":0},"status":"passed","severity":"normal"},{"uid":"a33fb2570aec1823","name":"Testing 'DefaultList' class: pop","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"f52a489cb0add672","name":"Testing array_diff function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"a7151a5672bbc2f6","name":"Testing 'count_sheeps' function: empty list","time":{"start":1724735129430,"stop":1724735129430,"duration":0},"status":"passed","severity":"normal"},{"uid":"7f890ca68cdfc481","name":"Testing 'DefaultList' class: append","time":{"start":1724735128031,"stop":1724735128047,"duration":16},"status":"passed","severity":"normal"},{"uid":"af191d67a3f53ad3","name":"'multiply' function verification with random list","time":{"start":1724735129227,"stop":1724735129227,"duration":0},"status":"passed","severity":"normal"},{"uid":"73a0aa79bef78acd","name":"a and b are equal","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c281d5272513bfd","name":"Testing binary_to_string function","time":{"start":1724735127969,"stop":1724735127969,"duration":0},"status":"passed","severity":"normal"},{"uid":"66f1b8d1e5ed1dbe","name":"Testing 'thirt' function","time":{"start":1724735127953,"stop":1724735127953,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c8034b1a6365fc2","name":"Testing tickets function","time":{"start":1724735128977,"stop":1724735128977,"duration":0},"status":"passed","severity":"normal"},{"uid":"2cbc31ebfbb61905","name":"Test with regular string","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"647dfe698e2a6fdb","name":"Testing top_3_words function","time":{"start":1724735127219,"stop":1724735127219,"duration":0},"status":"passed","severity":"normal"},{"uid":"682a94239c4fcbde","name":"Testing decipher_this function","time":{"start":1724735128031,"stop":1724735128031,"duration":0},"status":"passed","severity":"normal"},{"uid":"5653676293d9b683","name":"Testing to_alternating_case function","time":{"start":1724735129367,"stop":1724735129383,"duration":16},"status":"passed","severity":"normal"},{"uid":"a42793a5da57f5c7","name":"Testing increment_string function","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"a14fdddc74cd287e","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1724735129321,"stop":1724735129321,"duration":0},"status":"passed","severity":"normal"},{"uid":"34569132e9551c33","name":"Testing agents_cleanup function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ef0ca25b0e8e9c5","name":"Testing calc_combinations_per_row function","time":{"start":1724735129055,"stop":1724735129055,"duration":0},"status":"passed","severity":"normal"},{"uid":"547f04beeb8e83b4","name":"Testing men_from_boys function","time":{"start":1724735129258,"stop":1724735129258,"duration":0},"status":"passed","severity":"normal"},{"uid":"f0d79dba84dbdf82","name":"Testing length function","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"d1585e7c78fd8d06","name":"Testing solve function","time":{"start":1724735127984,"stop":1724735127984,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fba83a53ac553ac","name":"Testing 'count_sheeps' function: bad input","time":{"start":1724735129414,"stop":1724735129430,"duration":16},"status":"passed","severity":"normal"},{"uid":"b843b5b7994550ed","name":"Test with one char only","time":{"start":1724735129649,"stop":1724735129649,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c2a3e42bb3933c8","name":"Testing shark function (positive)","time":{"start":1724735129524,"stop":1724735129524,"duration":0},"status":"passed","severity":"normal"},{"uid":"89ceeba296a3ea3","name":"Testing 'numericals' function","time":{"start":1724735128852,"stop":1724735128852,"duration":0},"status":"passed","severity":"normal"},{"uid":"41a3f66c1c393960","name":"Testing alphanumeric function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"1152e12f582a6d83","name":"'fix_the_meerkat function function verification","time":{"start":1724735129617,"stop":1724735129617,"duration":0},"status":"passed","severity":"normal"},{"uid":"620b2589fb870406","name":"test_line_negative","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"e5ac2209dd79eabb","name":"test_ips_between","time":{"start":1724735127453,"stop":1724735127453,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5ecd182a341dd7b4","name":"Testing all_fibonacci_numbers function","time":{"start":1724735127516,"stop":1724735127516,"duration":0},"status":"passed","severity":"normal"},{"uid":"5e8c0121e99e8c0","name":"Testing check_for_factor function: positive flow","time":{"start":1724735129477,"stop":1724735129477,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c4e292a782b80e3","name":"Testing zeros function","time":{"start":1724735127860,"stop":1724735127860,"duration":0},"status":"passed","severity":"normal"},{"uid":"de3c176bdacd6cb0","name":"get_size function tests","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"be5a8376fdcba717","name":"Testing done_or_not function","time":{"start":1724735127906,"stop":1724735127906,"duration":0},"status":"passed","severity":"normal"},{"uid":"900ed6bd99df3d56","name":"test_sequence","time":{"start":1724735128836,"stop":1724735128836,"duration":0},"status":"skipped","severity":"normal"},{"uid":"f0e71551541527fc","name":"Testing the 'find_missing_number' function","time":{"start":1724735128836,"stop":1724735128852,"duration":16},"status":"passed","severity":"normal"},{"uid":"3edaeb1c9114b312","name":"test_starting_position_from_positives","time":{"start":1724735127188,"stop":1724735127188,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6a770856a19e186","name":"Testing period_is_late function (negative)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"c08b2480b8f26290","name":"Testing set_alarm function","time":{"start":1724735129664,"stop":1724735129664,"duration":0},"status":"passed","severity":"normal"},{"uid":"b98125cb150cd794","name":"Testing the 'pyramid' function","time":{"start":1724735128899,"stop":1724735128899,"duration":0},"status":"passed","severity":"normal"},{"uid":"57bbb6ca73efd1b4","name":"Testing Calculator class","time":{"start":1724735127157,"stop":1724735127172,"duration":15},"status":"passed","severity":"normal"},{"uid":"a2cb5446a34df86","name":"Non square numbers (negative)","time":{"start":1724735129367,"stop":1724735129367,"duration":0},"status":"passed","severity":"normal"},{"uid":"b864bfcb14132f63","name":"String alphabet chars and spaces","time":{"start":1724735128805,"stop":1724735128805,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c5d99461aa2603","name":"Testing invite_more_women function (negative)","time":{"start":1724735129242,"stop":1724735129242,"duration":0},"status":"passed","severity":"normal"},{"uid":"204a2114486cc2f9","name":"Testing length function where head = None","time":{"start":1724735129117,"stop":1724735129117,"duration":0},"status":"passed","severity":"normal"},{"uid":"8fac702aa93d2093","name":"Testing period_is_late function (positive)","time":{"start":1724735129555,"stop":1724735129555,"duration":0},"status":"passed","severity":"normal"},{"uid":"79e39b6957e2fa23","name":"All chars are in lower case","time":{"start":1724735128000,"stop":1724735128000,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e0e76f32ac7ce4e","name":"Testing Decoding functionality","time":{"start":1724735127203,"stop":1724735127203,"duration":0},"status":"passed","severity":"normal"},{"uid":"ccf5a8c46639d0ec","name":"Find the int that appears an odd number of times","time":{"start":1724735128774,"stop":1724735128774,"duration":0},"status":"passed","severity":"normal"},{"uid":"93b3042e12ae0dc2","name":"Testing 'DefaultList' class: insert","time":{"start":1724735128063,"stop":1724735128063,"duration":0},"status":"passed","severity":"normal"},{"uid":"cee46a1116cde2e1","name":"OR logical operator","time":{"start":1724735129586,"stop":1724735129586,"duration":0},"status":"passed","severity":"normal"},{"uid":"73d92f8f0c07772d","name":"Negative test cases for is_prime function testing","time":{"start":1724735129774,"stop":1724735129774,"duration":0},"status":"passed","severity":"critical"},{"uid":"8b31152bd581baeb","name":"Testing monkey_count function","time":{"start":1724735129414,"stop":1724735129414,"duration":0},"status":"passed","severity":"normal"},{"uid":"a37b17c93d1df521","name":"a or b is negative","time":{"start":1724735129024,"stop":1724735129024,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3f7088fed8dedd7","name":"Testing epidemic function","time":{"start":1724735128078,"stop":1724735128078,"duration":0},"status":"passed","severity":"normal"},{"uid":"91e3c1348f0cd9d2","name":"Testing 'order' function","time":{"start":1724735128992,"stop":1724735128992,"duration":0},"status":"passed","severity":"normal"},{"uid":"af5a357d104e13f2","name":"Testing max_multiple function","time":{"start":1724735129180,"stop":1724735129180,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4c5ff18f0370583","name":"test_line_positive","time":{"start":1724735127172,"stop":1724735127172,"duration":0},"status":"skipped","severity":"normal"},{"uid":"742a65a772f90af2","name":"'multiply' function verification: lists with multiple digits","time":{"start":1724735129211,"stop":1724735129211,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file +[{"uid":"f39847014d01db85","name":"Testing list_squared function","time":{"start":1733030099021,"stop":1733030099161,"duration":140},"status":"passed","severity":"normal"},{"uid":"555817f2fd5ba68f","name":"'multiply' function verification with random list","time":{"start":1733030100601,"stop":1733030100601,"duration":0},"status":"passed","severity":"normal"},{"uid":"5364303890f7a5a1","name":"Testing 'feast' function","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"ee5910cfe65a88ee","name":"Testing valid_parentheses function","time":{"start":1733030099255,"stop":1733030099255,"duration":0},"status":"passed","severity":"normal"},{"uid":"37fbb0401b01604d","name":"Testing hoop_count function (positive test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"5b5df6c66b23ba75","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099255,"duration":16},"status":"passed","severity":"normal"},{"uid":"5b36ed636679609b","name":"Square numbers (positive)","time":{"start":1733030100757,"stop":1733030100773,"duration":16},"status":"passed","severity":"normal"},{"uid":"46352cf5111d5c61","name":"XOR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"f8789af2e0cead9e","name":"Wolf at the end of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"b3654581f89b5576","name":"Testing the 'unique_in_order' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b0b5de93d5cb12","name":"Testing easy_line function exception message","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"5496efe2fd3e353","name":"goals function verification","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"5238b22fc20ccda9","name":"Testing easy_line function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"23b533c70baf95c9","name":"Testing check_exam function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"ac824f903545a6e7","name":"Testing move_zeros function","time":{"start":1733030099177,"stop":1733030099177,"duration":0},"status":"passed","severity":"normal"},{"uid":"c62025a79b33eb3","name":"test_solution_empty","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"644c808df55456e9","name":"Testing Encoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"c678c03e12583e98","name":"Testing Battle method","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"7940a8ba615e27f7","name":"Testing string_to_array function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ac65e8dc17d86a","name":"Testing litres function with various test inputs","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"e08a8a15da9b3ad","name":"test_josephus_survivor","time":{"start":1733030099161,"stop":1733030099161,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d0b6dccad411741e","name":"Testing the 'solution' function","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"passed","severity":"normal"},{"uid":"b92f0db6c4ee4ff0","name":"Testing format_duration","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"80b7e762ad299367","name":"Testing array_diff function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74a1a4c19be5344","name":"Testing permute_a_palindrome (empty string)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"c9c9a6a75f3a249f","name":"Testing checkchoose function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"f56ae5fa4f278c43","name":"Testing 'DefaultList' class: extend","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"5af3592e93b232bc","name":"Testing 'solution' function","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"7aa3fbfc8218c54e","name":"Testing spiralize function","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"1137568979e0ed3a","name":"Testing 'longest_repetition' function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"213536a8a5597e91","name":"Testing compute_ranks","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec0c7de9a70a5f5e","name":"Testing toJadenCase function (positive)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"7250652c2d8bbae5","name":"AND logical operator","time":{"start":1733030100992,"stop":1733030100992,"duration":0},"status":"passed","severity":"normal"},{"uid":"26189d3cfda1b8d1","name":"Testing calc function","time":{"start":1733030098614,"stop":1733030098614,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1f90fc4edd70bea","name":"Testing next_smaller function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d53eb58d77047e8","name":"Testing first_non_repeating_letter function","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4e7ccb7c6ccb848","name":"Testing men_from_boys function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"6c1e65f294db5f89","name":"test_solution_basic","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"d6520bfb9bc036e4","name":"Testing Warrior class >>> tom","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"7fd83f8828bfb391","name":"Testing 'order' function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"ead644ae8ee031c3","name":"Testing count_letters_and_digits function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"43a52f18fb3b8136","name":"Testing 'snail' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"d20d06b45fb65ddb","name":"Testing tickets function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"8caf8fe76e46aa0f","name":"Testing gap function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"fef6b9be2b6df65c","name":"Test with regular string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"230fd42f20a11e18","name":"Testing number_of_sigfigs function","time":{"start":1733030100617,"stop":1733030100633,"duration":16},"status":"passed","severity":"normal"},{"uid":"95500b18da61d76","name":"Testing 'solution' function","time":{"start":1733030100648,"stop":1733030100648,"duration":0},"status":"passed","severity":"normal"},{"uid":"44141b5da145c70a","name":"Testing 'DefaultList' class: append","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"78aec59881bd461e","name":"Simple test for empty string.","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"f807c10786110eac","name":"Large lists","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"218b156daee27f08","name":"Testing largestPower function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"48f19bb58dd1432f","name":"Testing easy_diagonal function","time":{"start":1733030099411,"stop":1733030100106,"duration":695},"status":"passed","severity":"normal"},{"uid":"b59318a9c97ef9f1","name":"STesting enough function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"e6b67890527d37e6","name":"Testing the 'valid_braces' function","time":{"start":1733030100356,"stop":1733030100356,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec1f79d5effe1aa9","name":"Testing compute_ranks","time":{"start":1724735127891,"stop":1724735127891,"duration":0},"status":"passed","severity":"normal"},{"uid":"52e55a2445119fdd","name":"Testing 'has_subpattern' (part 2) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"f51b45f6ebc18bdf","name":"Testing Sudoku class","time":{"start":1733030098880,"stop":1733030098880,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa0fd3e8d8009a95","name":"Testing stock_list function","time":{"start":1733030100169,"stop":1733030100169,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d2cfb77eef4360e","name":"String with no duplicate chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"cd56af2e749c4e8a","name":"Testing first_non_repeated function with various inputs","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"456a7345e9aeb905","name":"'multiply' function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"f83b86d7cbc0ffa1","name":"String alphabet chars and spaces","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3fc5966ad47411","name":"Testing 'letter_count' function","time":{"start":1733030099333,"stop":1733030099333,"duration":0},"status":"passed","severity":"normal"},{"uid":"7ea8a8dc382128a4","name":"test_smallest","time":{"start":1733030098989,"stop":1733030098989,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6c8559b634a76bd8","name":"Testing validSolution","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"b5ba84846c075db5","name":"Testing 'count_sheeps' function: bad input","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"fb676676627eae5f","name":"test_line_positive","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"skipped","severity":"normal"},{"uid":"1cbe6a610fbdfd6","name":"Testing binary_to_string function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"f74116cee1d73fd7","name":"a or b is negative","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"52f852c4238fea22","name":"Testing 'vaporcode' function","time":{"start":1733030100757,"stop":1733030100757,"duration":0},"status":"passed","severity":"normal"},{"uid":"4cc7d24b84024142","name":"Find the int that appears an odd number of times","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb94d03877c16bb4","name":"Testing Walker class - position property from positive grids","time":{"start":1733030098661,"stop":1733030098661,"duration":0},"status":"passed","severity":"critical"},{"uid":"5503b0de9149b0f0","name":"Testing period_is_late function (positive)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"469fb46dbe1a31d","name":"Testing permute_a_palindrome (negative)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"22bb7ddce4971121","name":"Testing pig_it function","time":{"start":1733030099208,"stop":1733030099208,"duration":0},"status":"passed","severity":"normal"},{"uid":"83ae1189d3669b33","name":"Testing the 'pyramid' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"8db7c8bf0abe07bc","name":"Testing two_decimal_places function","time":{"start":1733030100481,"stop":1733030100481,"duration":0},"status":"passed","severity":"normal"},{"uid":"ffb8e8f4eed50d14","name":"Testing shark function (positive)","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"5814d63d4b392228","name":"move function tests","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"8572ffe92ddcaa11","name":"Testing epidemic function","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"6b2ccbd851ec600","name":"Verify that greet function returns the proper message","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"4a970025f2147b3a","name":"Testing invite_more_women function (positive)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e884f6ea55b7c35","name":"Wolf at the beginning of the queue","time":{"start":1733030101148,"stop":1733030101148,"duration":0},"status":"passed","severity":"normal"},{"uid":"43578fd4f74ce5d9","name":"test_ips_between","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"skipped","severity":"normal"},{"uid":"902288cde0f2109a","name":"Testing 'parts_sums' function","time":{"start":1733030100340,"stop":1733030100340,"duration":0},"status":"passed","severity":"normal"},{"uid":"690df5b9e2e97d3","name":"Testing 'sum_triangular_numbers' with zero","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8c57e21dd6fea81","name":"Testing 'summation' function","time":{"start":1733030100914,"stop":1733030100914,"duration":0},"status":"passed","severity":"normal"},{"uid":"af3a43fc31649664","name":"Testing sum_for_list function","time":{"start":1733030098771,"stop":1733030098849,"duration":78},"status":"passed","severity":"normal"},{"uid":"1cc5ce778c99d98","name":"get_size function tests","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"293f48722d8450df","name":"All chars are in mixed case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"91c1d8a1fc37f84","name":"a an b are positive numbers","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"1fb0e4ddfae0bf06","name":"Testing agents_cleanup function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"984b8a80ce69773d","name":"Testing encrypt_this function","time":{"start":1733030100122,"stop":1733030100122,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a6bb93adc2b9500","name":"OR logical operator","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"7e7534020c406c41","name":"Testing swap_values function","time":{"start":1733030101086,"stop":1733030101086,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2af0876e7f45a7f","name":"'multiply' function verification: lists with multiple digits","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"25eb791ee007f15b","name":"Testing Potion class","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"2571a6d17171a809","name":"Testing digital_root function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"32eaf956310a89b7","name":"Testing invite_more_women function (negative)","time":{"start":1733030100633,"stop":1733030100633,"duration":0},"status":"passed","severity":"normal"},{"uid":"9ba260a0149e6341","name":"Testing increment_string function","time":{"start":1733030099224,"stop":1733030099224,"duration":0},"status":"passed","severity":"normal"},{"uid":"3a516b9dc7b53625","name":"Testing 'greek_comparator' function","time":{"start":1733030100929,"stop":1733030100929,"duration":0},"status":"passed","severity":"normal"},{"uid":"2de9285990285353","name":"Testing alphabet_war function","time":{"start":1733030098896,"stop":1733030098896,"duration":0},"status":"passed","severity":"normal"},{"uid":"f2a1a9d494a0859","name":"Testing top_3_words function","time":{"start":1733030098692,"stop":1733030098692,"duration":0},"status":"passed","severity":"normal"},{"uid":"8da8c6de16bb179d","name":"Testing 'solution' function","time":{"start":1733030098755,"stop":1733030098755,"duration":0},"status":"passed","severity":"normal"},{"uid":"33789c02e7e07041","name":"Negative numbers","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"eb8f6057b9598daa","name":"Non square numbers (negative)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"d2acdc5e027859f4","name":"Testing anagrams function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"1c66d03c44b01cf6","name":"Testing the 'group_cities' function","time":{"start":1733030100247,"stop":1733030100247,"duration":0},"status":"passed","severity":"normal"},{"uid":"cb005e45e7b312b5","name":"Testing to_alternating_case function","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"99e95613ed424b35","name":"Testing sum_of_intervals function","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"823dff07664aaa4","name":"powers function should return an array of unique numbers","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"8146fd50051ac96b","name":"a and b are equal","time":{"start":1733030100403,"stop":1733030100403,"duration":0},"status":"passed","severity":"normal"},{"uid":"d518579b8137712e","name":"Should return 'I smell a series!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"badb2c1a8c5e2d2d","name":"test_random","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"777b1d9b55eb3ae9","name":"String with alphabet chars only","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"4e3f7ea473e691d3","name":"Testing the 'sort_array' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"9b651a3e27842d38","name":"Testing 'sum_triangular_numbers' with negative numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"68fbe283acac1b6a","name":"test_basic","time":{"start":1724733474194,"stop":1724733474194,"duration":0},"status":"passed","severity":"normal"},{"uid":"564bcc936cf15d1a","name":"Testing is_palindrome function","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"a1e3818ccb62ed24","name":"Non square numbers (negative)","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4cae88de9afaa55","name":"Test that no_space function removes the spaces","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"2c379ae83853bb2a","name":"Should return 'Publish!'","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1326d9a3ad9ddfb","name":"Testing 'has_subpattern' (part 1) function","time":{"start":1733030100294,"stop":1733030100294,"duration":0},"status":"passed","severity":"normal"},{"uid":"f87e2580dd045df5","name":"Testing 'mix' function","time":{"start":1733030098739,"stop":1733030098739,"duration":0},"status":"passed","severity":"normal"},{"uid":"24f0384efd85ae74","name":"Testing share_price function","time":{"start":1733030100617,"stop":1733030100617,"duration":0},"status":"passed","severity":"normal"},{"uid":"bb8e119491d2ebc3","name":"Negative test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"f0d7d5d837d1a81d","name":"Testing 'save' function: positive","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"a492c358ecb2902d","name":"Non consecutive number should be returned","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"aa7d2e5e86b66673","name":"String with no alphabet chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"913fbd5c2da31308","name":"Testing solution function","time":{"start":1733030098724,"stop":1733030098724,"duration":0},"status":"passed","severity":"normal"},{"uid":"db9b592f660c3c08","name":"Testing 'numericals' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"101b76d3a18bb4c3","name":"Testing string_transformer function","time":{"start":1733030100325,"stop":1733030100325,"duration":0},"status":"passed","severity":"normal"},{"uid":"8878dccf56d36ba6","name":"Testing the 'find_missing_number' function","time":{"start":1733030100200,"stop":1733030100200,"duration":0},"status":"passed","severity":"normal"},{"uid":"e0dd8dfaed76aa75","name":"Testing length function","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5a7f52be4bf7369","name":"Testing shark function (negative)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"3ff093181cede851","name":"Testing 'DefaultList' class: remove","time":{"start":1733030099395,"stop":1733030099395,"duration":0},"status":"passed","severity":"normal"},{"uid":"d0cba34627dad034","name":"Test for invalid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"a90239b6ef90f6a6","name":"Testing done_or_not function","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"passed","severity":"normal"},{"uid":"b4c3bd7788c9f57d","name":"Testing 'has_subpattern' (part 3) function","time":{"start":1733030100309,"stop":1733030100309,"duration":0},"status":"passed","severity":"normal"},{"uid":"8eb80b15a6d6b848","name":"Testing is_prime function","time":{"start":1733030099161,"stop":1733030099177,"duration":16},"status":"passed","severity":"normal"},{"uid":"3f2e19b818fd15f5","name":"Testing 'generate_hashtag' function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"a088624abb606e0e","name":"Testing make_class function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"4990a9f9fb7d9809","name":"Simple test for valid parentheses","time":{"start":1733030100742,"stop":1733030100757,"duration":15},"status":"passed","severity":"normal"},{"uid":"6f178467aa4ed9b7","name":"'multiply' function verification with one element list","time":{"start":1733030100590,"stop":1733030100601,"duration":11},"status":"passed","severity":"normal"},{"uid":"5bee7e36f6e76857","name":"All chars are in lower case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"72c2edc2055d0da7","name":"Testing done_or_not function","time":{"start":1733030099239,"stop":1733030099239,"duration":0},"status":"passed","severity":"normal"},{"uid":"c245bb8192a35073","name":"Positive test cases for gen_primes function testing","time":{"start":1733030101179,"stop":1733030101179,"duration":0},"status":"passed","severity":"critical"},{"uid":"733b2334645f5c42","name":"Testing odd_row function","time":{"start":1733030100262,"stop":1733030100262,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d07449717f6193c","name":"Testing 'count_sheeps' function: positive flow","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"8a0604fc927a7480","name":"Negative non consecutive number should be returned","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"d9d827d0af3ba710","name":"Testing calc_combinations_per_row function","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"87b2e8453406c3f","name":"Testing 'shortest_job_first(' function","time":{"start":1733030100278,"stop":1733030100278,"duration":0},"status":"passed","severity":"normal"},{"uid":"5ff9cf70b259ca21","name":"Testing likes function","time":{"start":1733030100372,"stop":1733030100372,"duration":0},"status":"passed","severity":"normal"},{"uid":"49244d740987433","name":"Testing password function","time":{"start":1733030100559,"stop":1733030100559,"duration":0},"status":"passed","severity":"normal"},{"uid":"f06328bb4646abe9","name":"Testing 'sum_triangular_numbers' with big number as an input","time":{"start":1733030100679,"stop":1733030100679,"duration":0},"status":"passed","severity":"normal"},{"uid":"b0395834a1dc7266","name":"Testing calculate function","time":{"start":1733030100387,"stop":1733030100403,"duration":16},"status":"passed","severity":"normal"},{"uid":"157d23c0aff9e075","name":"Testing duplicate_encode function","time":{"start":1733030099411,"stop":1733030099411,"duration":0},"status":"passed","severity":"normal"},{"uid":"4223e436b2847599","name":"Testing calculate_damage function","time":{"start":1733030100231,"stop":1733030100231,"duration":0},"status":"passed","severity":"normal"},{"uid":"3d9d773987a3ac09","name":"String with no duplicate chars","time":{"start":1733030100153,"stop":1733030100153,"duration":0},"status":"passed","severity":"normal"},{"uid":"4d64a30c387b7743","name":"Testing growing_plant function","time":{"start":1733030100512,"stop":1733030100512,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8d9a4d573dbda2b","name":"Testing flatten function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"9e6eb35888cc4f59","name":"Testing 'DefaultList' class: __getitem__","time":{"start":1733030099364,"stop":1733030099364,"duration":0},"status":"passed","severity":"normal"},{"uid":"afa4196b56245753","name":"Testing decipher_this function","time":{"start":1733030099349,"stop":1733030099349,"duration":0},"status":"passed","severity":"normal"},{"uid":"67535419d885cbd9","name":"Testing 'DefaultList' class: insert","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"8c4575be21ff0ded","name":"Testing Warrior class >>> bruce_lee","time":{"start":1733030098864,"stop":1733030098864,"duration":0},"status":"passed","severity":"normal"},{"uid":"e4473b95f40f5c92","name":"Testing toJadenCase function (negative)","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"e42b69525abdede6","name":"Testing make_upper_case function","time":{"start":1733030101007,"stop":1733030101007,"duration":0},"status":"passed","severity":"normal"},{"uid":"c1393951861e51a9","name":"Testing solve function","time":{"start":1733030099302,"stop":1733030099302,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a3aa78afffa487b","name":"Test with empty string","time":{"start":1733030101054,"stop":1733030101054,"duration":0},"status":"passed","severity":"normal"},{"uid":"31ce0fdb81c2daf6","name":"Testing domain_name function","time":{"start":1733030098942,"stop":1733030098942,"duration":0},"status":"passed","severity":"normal"},{"uid":"482cc1b462231f44","name":"test_line_negative","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ad642268f112be60","name":"Testing 'sum_triangular_numbers' with positive numbers","time":{"start":1733030100695,"stop":1733030100695,"duration":0},"status":"passed","severity":"normal"},{"uid":"5a5d0954bb249b69","name":"test_permutations","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"skipped","severity":"normal"},{"uid":"ae87022eb9b205bd","name":"'multiply' function verification with empty list","time":{"start":1733030100575,"stop":1733030100575,"duration":0},"status":"passed","severity":"normal"},{"uid":"ce6714fc18aff8ec","name":"Testing hoop_count function (negative test case)","time":{"start":1733030100976,"stop":1733030100976,"duration":0},"status":"passed","severity":"normal"},{"uid":"96938210802b960f","name":"test_triangle","time":{"start":1733030100419,"stop":1733030100419,"duration":0},"status":"passed","severity":"normal"},{"uid":"47e3461a4e252fc1","name":"Testing take function","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"e7ac97a954c5e722","name":"Testing length function where head = None","time":{"start":1733030100497,"stop":1733030100497,"duration":0},"status":"passed","severity":"normal"},{"uid":"ece5bd16ef8bbe52","name":"Testing to_table function","time":{"start":1733030099286,"stop":1733030099286,"duration":0},"status":"passed","severity":"normal"},{"uid":"69d8ca152b73c452","name":"Testing 'save' function: negative","time":{"start":1733030100465,"stop":1733030100465,"duration":0},"status":"passed","severity":"normal"},{"uid":"d49eccd60ce84feb","name":"Testing dir_reduc function","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"passed","severity":"normal"},{"uid":"315e825b7f114d5b","name":"Testing all_fibonacci_numbers function","time":{"start":1733030098942,"stop":1733030098958,"duration":16},"status":"passed","severity":"normal"},{"uid":"971c2aa5dd36f62c","name":"Testing max_multiple function","time":{"start":1733030100543,"stop":1733030100543,"duration":0},"status":"passed","severity":"normal"},{"uid":"25c9ba69d5ac48c6","name":"Testing 'factorial' function","time":{"start":1733030100450,"stop":1733030100450,"duration":0},"status":"passed","severity":"normal"},{"uid":"c515ef635fa26df1","name":"Testing validate_battlefield function","time":{"start":1733030098614,"stop":1733030098630,"duration":16},"status":"passed","severity":"normal"},{"uid":"da807d1d651bf07b","name":"All chars are in upper case","time":{"start":1733030099317,"stop":1733030099317,"duration":0},"status":"passed","severity":"normal"},{"uid":"14c26803c1139e78","name":"Testing 'count_sheeps' function: empty list","time":{"start":1733030100836,"stop":1733030100836,"duration":0},"status":"passed","severity":"normal"},{"uid":"c50649c997228fe6","name":"Testing set_alarm function","time":{"start":1733030101070,"stop":1733030101070,"duration":0},"status":"passed","severity":"normal"},{"uid":"5647d5db4078d707","name":"Testing two_decimal_places function","time":{"start":1733030100882,"stop":1733030100882,"duration":0},"status":"passed","severity":"normal"},{"uid":"e578dac1473f78ec","name":"Wolf in the middle of the queue","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"normal"},{"uid":"cef1ed2aef537de7","name":"a and b are equal","time":{"start":1733030100434,"stop":1733030100434,"duration":0},"status":"passed","severity":"normal"},{"uid":"506e0ee504d23a05","name":"Testing advice function","time":{"start":1733030098958,"stop":1733030098989,"duration":31},"status":"passed","severity":"normal"},{"uid":"ad3e6b6eddb975ef","name":"Negative test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"69f67038b11a4861","name":"Testing row_sum_odd_numbers function","time":{"start":1733030100664,"stop":1733030100664,"duration":0},"status":"passed","severity":"normal"},{"uid":"3f3a4afa0166112e","name":"Testing zero_fuel function","time":{"start":1733030101132,"stop":1733030101132,"duration":0},"status":"passed","severity":"normal"},{"uid":"864ee426bf422b09","name":"Testing permute_a_palindrome (positive)","time":{"start":1733030100215,"stop":1733030100215,"duration":0},"status":"passed","severity":"normal"},{"uid":"a5961784f4ddfa34","name":"Testing 'thirt' function","time":{"start":1733030099270,"stop":1733030099270,"duration":0},"status":"passed","severity":"normal"},{"uid":"2fa689144ccb2725","name":"Two smallest numbers in the start of the list","time":{"start":1733030100711,"stop":1733030100711,"duration":0},"status":"passed","severity":"normal"},{"uid":"40b9b78f2d258cf9","name":"Testing zeros function","time":{"start":1733030099192,"stop":1733030099208,"duration":16},"status":"passed","severity":"normal"},{"uid":"b40f27be3da7edd7","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"afc8e5dacd30bc41","name":"fix_the_meerkat function function verification","time":{"start":1733030101023,"stop":1733030101023,"duration":0},"status":"passed","severity":"normal"},{"uid":"28baf5593cc14310","name":"You are given two angles -> find the 3rd.","time":{"start":1733030101101,"stop":1733030101101,"duration":0},"status":"passed","severity":"normal"},{"uid":"30779503c72bcec6","name":"Zero","time":{"start":1733030100789,"stop":1733030100789,"duration":0},"status":"passed","severity":"normal"},{"uid":"f55783c4fa90131e","name":"Simple test for invalid parentheses","time":{"start":1733030100726,"stop":1733030100726,"duration":0},"status":"passed","severity":"normal"},{"uid":"2a82791553e70088","name":"Testing century function","time":{"start":1733030100804,"stop":1733030100804,"duration":0},"status":"passed","severity":"normal"},{"uid":"a6a651d904577cf4","name":"Testing 'DefaultList' class: pop","time":{"start":1733030099380,"stop":1733030099380,"duration":0},"status":"passed","severity":"normal"},{"uid":"d06d6d8db945d4d7","name":"Testing Calculator class","time":{"start":1733030098630,"stop":1733030098630,"duration":0},"status":"passed","severity":"normal"},{"uid":"e96aee50481acdd6","name":"Test with one char only","time":{"start":1733030101054,"stop":1733030101070,"duration":16},"status":"passed","severity":"normal"},{"uid":"a1c87b2c2a6c0bb7","name":"Testing period_is_late function (negative)","time":{"start":1733030100961,"stop":1733030100961,"duration":0},"status":"passed","severity":"normal"},{"uid":"be79a08ed18e426","name":"Testing create_city_map function","time":{"start":1733030098958,"stop":1733030098958,"duration":0},"status":"passed","severity":"normal"},{"uid":"ec58e61448a9c6a8","name":"test_solution_medium","time":{"start":1733030098927,"stop":1733030098927,"duration":0},"status":"skipped","severity":"normal"},{"uid":"a81b8ca7a7877717","name":"Testing Walker class - position property from negative grids","time":{"start":1733030098646,"stop":1733030098646,"duration":0},"status":"passed","severity":"critical"},{"uid":"5880c730022f01ee","name":"Testing monkey_count function","time":{"start":1733030100820,"stop":1733030100820,"duration":0},"status":"passed","severity":"normal"},{"uid":"a95c24b51d5c9432","name":"Testing 'count_sheeps' function: mixed list","time":{"start":1733030100851,"stop":1733030100851,"duration":0},"status":"passed","severity":"normal"},{"uid":"cbb9443875889585","name":"Testing check_root function","time":{"start":1733030100387,"stop":1733030100387,"duration":0},"status":"passed","severity":"normal"},{"uid":"f5898a8468d0cd4","name":"String with mixed type of chars","time":{"start":1733030100137,"stop":1733030100137,"duration":0},"status":"passed","severity":"normal"},{"uid":"c8680b20dd7e19d5","name":"Square numbers (positive)","time":{"start":1733030100773,"stop":1733030100773,"duration":0},"status":"passed","severity":"normal"},{"uid":"ca1eccae180a083e","name":"Testing Decoding functionality","time":{"start":1733030098677,"stop":1733030098677,"duration":0},"status":"passed","severity":"normal"},{"uid":"af16ce1f4d774662","name":"Testing 'is_isogram' function","time":{"start":1733030100528,"stop":1733030100528,"duration":0},"status":"passed","severity":"normal"},{"uid":"5c460b7e756cd57","name":"Positive test cases for is_prime function testing","time":{"start":1733030101164,"stop":1733030101164,"duration":0},"status":"passed","severity":"critical"},{"uid":"a92222b0b7f4d601","name":"Testing make_readable function","time":{"start":1733030099005,"stop":1733030099005,"duration":0},"status":"passed","severity":"normal"},{"uid":"873ec1972fa36468","name":"Testing check_for_factor function: positive flow","time":{"start":1733030100898,"stop":1733030100898,"duration":0},"status":"passed","severity":"normal"},{"uid":"9cc2024d730e5f8a","name":"Test for valid large string","time":{"start":1733030100742,"stop":1733030100742,"duration":0},"status":"passed","severity":"normal"},{"uid":"19443f8320b2694c","name":"Testing alphanumeric function","time":{"start":1733030099192,"stop":1733030099192,"duration":0},"status":"passed","severity":"normal"},{"uid":"f4915582d5908ed3","name":"Non is expected","time":{"start":1733030100867,"stop":1733030100867,"duration":0},"status":"passed","severity":"normal"},{"uid":"21221b4a48a21055","name":"test_sequence","time":{"start":1733030100184,"stop":1733030100184,"duration":0},"status":"skipped","severity":"normal"},{"uid":"5488ed1b45d5018a","name":"Testing count_letters_and_digits function","time":{"start":1724735129133,"stop":1724735129133,"duration":0},"status":"passed","severity":"normal"},{"uid":"a4cb6a94c77f28ce","name":"Testing shark function (positive)","time":{"start":1733030100945,"stop":1733030100945,"duration":0},"status":"passed","severity":"normal"},{"uid":"4df2e31ca734bf47","name":"test_solution_big","time":{"start":1733030098911,"stop":1733030098911,"duration":0},"status":"skipped","severity":"normal"},{"uid":"6d917e3e4d702f23","name":"Testing remove_char function","time":{"start":1733030101039,"stop":1733030101039,"duration":0},"status":"passed","severity":"normal"},{"uid":"1d49801d4e6b4921","name":"Testing next_bigger function","time":{"start":1733030098708,"stop":1733030098708,"duration":0},"status":"passed","severity":"normal"},{"uid":"9eaae816682ea6e3","name":"Should return 'Fail!'s","time":{"start":1733030101117,"stop":1733030101117,"duration":0},"status":"passed","severity":"normal"}] \ No newline at end of file diff --git a/allure-report/widgets/suites.json b/allure-report/widgets/suites.json index bf391c9a1b1..404a742e7c9 100644 --- a/allure-report/widgets/suites.json +++ b/allure-report/widgets/suites.json @@ -1 +1 @@ -{"total":5,"items":[{"uid":"55eafda7393c07a0cb8bf5a36609ee53","name":"Beginner","statistic":{"failed":0,"broken":0,"skipped":0,"passed":109,"unknown":0,"total":109}},{"uid":"7f519f47c947401fdd71874cbd1d477a","name":"Novice","statistic":{"failed":0,"broken":0,"skipped":8,"passed":75,"unknown":0,"total":83}},{"uid":"b657148eb402076160f4d681d84f0c34","name":"Competent","statistic":{"failed":0,"broken":0,"skipped":5,"passed":20,"unknown":0,"total":25}},{"uid":"ba03885408883f246e0fc1968e84ead3","name":"Helper methods","statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4}},{"uid":"34b2a72e4b24c2f51de9d53851293f32","name":"Proficient","statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1}}]} \ No newline at end of file +{"total":5,"items":[{"uid":"55eafda7393c07a0cb8bf5a36609ee53","name":"Beginner","statistic":{"failed":0,"broken":0,"skipped":0,"passed":115,"unknown":0,"total":115}},{"uid":"7f519f47c947401fdd71874cbd1d477a","name":"Novice","statistic":{"failed":0,"broken":0,"skipped":8,"passed":79,"unknown":0,"total":87}},{"uid":"b657148eb402076160f4d681d84f0c34","name":"Competent","statistic":{"failed":0,"broken":0,"skipped":3,"passed":22,"unknown":0,"total":25}},{"uid":"ba03885408883f246e0fc1968e84ead3","name":"Helper methods","statistic":{"failed":0,"broken":0,"skipped":0,"passed":4,"unknown":0,"total":4}},{"uid":"34b2a72e4b24c2f51de9d53851293f32","name":"Proficient","statistic":{"failed":0,"broken":0,"skipped":0,"passed":1,"unknown":0,"total":1}}]} \ No newline at end of file diff --git a/allure-report/widgets/summary.json b/allure-report/widgets/summary.json index 36ca6a85239..afb0568e0d0 100644 --- a/allure-report/widgets/summary.json +++ b/allure-report/widgets/summary.json @@ -1 +1 @@ -{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":0,"skipped":13,"passed":209,"unknown":0,"total":222},"time":{"start":1724733474194,"stop":1724735129789,"duration":1655595,"minDuration":0,"maxDuration":648,"sumDuration":1276}} \ No newline at end of file +{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":0,"skipped":11,"passed":221,"unknown":0,"total":232},"time":{"start":1724733474194,"stop":1733030101179,"duration":8296626985,"minDuration":0,"maxDuration":695,"sumDuration":1114}} \ No newline at end of file diff --git a/depricated/.travis.yml b/depricated/.travis.yml index 60b47470234..e2c3306d4df 100644 --- a/depricated/.travis.yml +++ b/depricated/.travis.yml @@ -1,3 +1,4 @@ +--- dist: xenial # required for Python >= 3.7 language: python diff --git a/depricated/rocro.yml b/depricated/rocro.yml index f7b6c90768a..896fbd610e1 100644 --- a/depricated/rocro.yml +++ b/depricated/rocro.yml @@ -1,4 +1,4 @@ - +--- inspecode: experimental: runtime: @@ -9,4 +9,4 @@ inspecode: pylint: ignore: docs, pytest: - input: test_* \ No newline at end of file + input: test_* diff --git a/docs/index.rst b/docs/index.rst index cc3ae39dfdb..fefbd97ba67 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -11,10 +11,10 @@ Welcome to Python3 solutions for codewars problems's documentation! :caption: Contents: readme - kyu_2 - kyu_3 - kyu_4 - kyu_5 + kyu_2/kyu_2 + kyu_3/kyu_3 + kyu_4/kyu_4 + kyu_5/kyu_5 kyu_6 kyu_7 kyu_8 diff --git a/docs/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2.evaluate_mathematical_expression.readme.rst deleted file mode 100644 index 6fd7ac011bd..00000000000 --- a/docs/kyu_2.evaluate_mathematical_expression.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_2/evaluate_mathematical_expression/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2.readme.rst b/docs/kyu_2.readme.rst deleted file mode 100644 index 683534cd5d0..00000000000 --- a/docs/kyu_2.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_2/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2.evaluate_mathematical_expression.module.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst similarity index 100% rename from docs/kyu_2.evaluate_mathematical_expression.module.rst rename to docs/kyu_2/kyu_2.evaluate_mathematical_expression.module.rst diff --git a/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst new file mode 100644 index 00000000000..096d66c2196 --- /dev/null +++ b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_2/evaluate_mathematical_expression/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2.evaluate_mathematical_expression.rst b/docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst similarity index 100% rename from docs/kyu_2.evaluate_mathematical_expression.rst rename to docs/kyu_2/kyu_2.evaluate_mathematical_expression.rst diff --git a/docs/kyu_2/kyu_2.readme.rst b/docs/kyu_2/kyu_2.readme.rst new file mode 100644 index 00000000000..d75f8b7ceee --- /dev/null +++ b/docs/kyu_2/kyu_2.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_2/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_2.rst b/docs/kyu_2/kyu_2.rst similarity index 100% rename from docs/kyu_2.rst rename to docs/kyu_2/kyu_2.rst diff --git a/docs/kyu_3.battleship_field_validator.readme.rst b/docs/kyu_3.battleship_field_validator.readme.rst deleted file mode 100644 index 0776aeff504..00000000000 --- a/docs/kyu_3.battleship_field_validator.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/battleship_field_validator/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.calculator.readme.rst b/docs/kyu_3.calculator.readme.rst deleted file mode 100644 index fce496a2c63..00000000000 --- a/docs/kyu_3.calculator.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/calculator/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.line_safari_is_that_a_line.readme.rst b/docs/kyu_3.line_safari_is_that_a_line.readme.rst deleted file mode 100644 index ab771426074..00000000000 --- a/docs/kyu_3.line_safari_is_that_a_line.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/line_safari_is_that_a_line/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.make_spiral.readme.rst b/docs/kyu_3.make_spiral.readme.rst deleted file mode 100644 index 80e7a91b575..00000000000 --- a/docs/kyu_3.make_spiral.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/make_spiral/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst b/docs/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst deleted file mode 100644 index 045aa7a2ed0..00000000000 --- a/docs/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/rail_fence_cipher_encoding_and_decoding/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.readme.rst b/docs/kyu_3.readme.rst deleted file mode 100644 index 0608f71ff4d..00000000000 --- a/docs/kyu_3.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_3/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.battleship_field_validator.module.rst b/docs/kyu_3/kyu_3.battleship_field_validator.module.rst similarity index 100% rename from docs/kyu_3.battleship_field_validator.module.rst rename to docs/kyu_3/kyu_3.battleship_field_validator.module.rst diff --git a/docs/kyu_3/kyu_3.battleship_field_validator.readme.rst b/docs/kyu_3/kyu_3.battleship_field_validator.readme.rst new file mode 100644 index 00000000000..54ccb439a95 --- /dev/null +++ b/docs/kyu_3/kyu_3.battleship_field_validator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/battleship_field_validator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.battleship_field_validator.rst b/docs/kyu_3/kyu_3.battleship_field_validator.rst similarity index 100% rename from docs/kyu_3.battleship_field_validator.rst rename to docs/kyu_3/kyu_3.battleship_field_validator.rst diff --git a/docs/kyu_3.calculator.module.rst b/docs/kyu_3/kyu_3.calculator.module.rst similarity index 100% rename from docs/kyu_3.calculator.module.rst rename to docs/kyu_3/kyu_3.calculator.module.rst diff --git a/docs/kyu_3/kyu_3.calculator.readme.rst b/docs/kyu_3/kyu_3.calculator.readme.rst new file mode 100644 index 00000000000..3ff802e1826 --- /dev/null +++ b/docs/kyu_3/kyu_3.calculator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/calculator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.calculator.rst b/docs/kyu_3/kyu_3.calculator.rst similarity index 100% rename from docs/kyu_3.calculator.rst rename to docs/kyu_3/kyu_3.calculator.rst diff --git a/docs/kyu_3.line_safari_is_that_a_line.module.rst b/docs/kyu_3/kyu_3.line_safari_is_that_a_line.module.rst similarity index 100% rename from docs/kyu_3.line_safari_is_that_a_line.module.rst rename to docs/kyu_3/kyu_3.line_safari_is_that_a_line.module.rst diff --git a/docs/kyu_3/kyu_3.line_safari_is_that_a_line.readme.rst b/docs/kyu_3/kyu_3.line_safari_is_that_a_line.readme.rst new file mode 100644 index 00000000000..d65ee34c2a9 --- /dev/null +++ b/docs/kyu_3/kyu_3.line_safari_is_that_a_line.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/line_safari_is_that_a_line/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.line_safari_is_that_a_line.rst b/docs/kyu_3/kyu_3.line_safari_is_that_a_line.rst similarity index 100% rename from docs/kyu_3.line_safari_is_that_a_line.rst rename to docs/kyu_3/kyu_3.line_safari_is_that_a_line.rst diff --git a/docs/kyu_3.make_spiral.module.rst b/docs/kyu_3/kyu_3.make_spiral.module.rst similarity index 100% rename from docs/kyu_3.make_spiral.module.rst rename to docs/kyu_3/kyu_3.make_spiral.module.rst diff --git a/docs/kyu_3/kyu_3.make_spiral.readme.rst b/docs/kyu_3/kyu_3.make_spiral.readme.rst new file mode 100644 index 00000000000..c199c88b47b --- /dev/null +++ b/docs/kyu_3/kyu_3.make_spiral.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/make_spiral/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.make_spiral.rst b/docs/kyu_3/kyu_3.make_spiral.rst similarity index 100% rename from docs/kyu_3.make_spiral.rst rename to docs/kyu_3/kyu_3.make_spiral.rst diff --git a/docs/kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst b/docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst similarity index 100% rename from docs/kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst rename to docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.module.rst diff --git a/docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst b/docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst new file mode 100644 index 00000000000..34dbabe481a --- /dev/null +++ b/docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/rail_fence_cipher_encoding_and_decoding/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.rail_fence_cipher_encoding_and_decoding.rst b/docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.rst similarity index 100% rename from docs/kyu_3.rail_fence_cipher_encoding_and_decoding.rst rename to docs/kyu_3/kyu_3.rail_fence_cipher_encoding_and_decoding.rst diff --git a/docs/kyu_3/kyu_3.readme.rst b/docs/kyu_3/kyu_3.readme.rst new file mode 100644 index 00000000000..88da00e65fd --- /dev/null +++ b/docs/kyu_3/kyu_3.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_3/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_3.rst b/docs/kyu_3/kyu_3.rst similarity index 100% rename from docs/kyu_3.rst rename to docs/kyu_3/kyu_3.rst diff --git a/docs/kyu_4.human_readable_duration_format.readme.rst b/docs/kyu_4.human_readable_duration_format.readme.rst deleted file mode 100644 index 19f0cacdc14..00000000000 --- a/docs/kyu_4.human_readable_duration_format.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/human_readable_duration_format/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.most_frequently_used_words.readme.rst b/docs/kyu_4.most_frequently_used_words.readme.rst deleted file mode 100644 index fc7f58d780a..00000000000 --- a/docs/kyu_4.most_frequently_used_words.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/most_frequently_used_words/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.next_bigger_number_with_the_same_digits.readme.rst b/docs/kyu_4.next_bigger_number_with_the_same_digits.readme.rst deleted file mode 100644 index 7e0291ab49f..00000000000 --- a/docs/kyu_4.next_bigger_number_with_the_same_digits.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/next_bigger_number_with_the_same_digits/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.next_smaller_number_with_the_same_digits.readme.rst b/docs/kyu_4.next_smaller_number_with_the_same_digits.readme.rst deleted file mode 100644 index 5c69350fa53..00000000000 --- a/docs/kyu_4.next_smaller_number_with_the_same_digits.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/next_smaller_number_with_the_same_digits/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.permutations.readme.rst b/docs/kyu_4.permutations.readme.rst deleted file mode 100644 index 17bb91d8221..00000000000 --- a/docs/kyu_4.permutations.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/permutations/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.range_extraction.readme.rst b/docs/kyu_4.range_extraction.readme.rst deleted file mode 100644 index 4b7cde6cb79..00000000000 --- a/docs/kyu_4.range_extraction.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/range_extraction/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.readme.rst b/docs/kyu_4.readme.rst deleted file mode 100644 index 2a74a39743c..00000000000 --- a/docs/kyu_4.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.snail.readme.rst b/docs/kyu_4.snail.readme.rst deleted file mode 100644 index 7268c5f2e02..00000000000 --- a/docs/kyu_4.snail.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/snail/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.strings_mix.readme.rst b/docs/kyu_4.strings_mix.readme.rst deleted file mode 100644 index 64bdaf6747d..00000000000 --- a/docs/kyu_4.strings_mix.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/strings_mix/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.strip_comments.readme.rst b/docs/kyu_4.strip_comments.readme.rst deleted file mode 100644 index aa0b1551ad0..00000000000 --- a/docs/kyu_4.strip_comments.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/strip_comments/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sudoku_solution_validator.readme.rst b/docs/kyu_4.sudoku_solution_validator.readme.rst deleted file mode 100644 index a56a591909c..00000000000 --- a/docs/kyu_4.sudoku_solution_validator.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/sudoku_solution_validator/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sum_by_factors.readme.rst b/docs/kyu_4.sum_by_factors.readme.rst deleted file mode 100644 index 1b683d91c78..00000000000 --- a/docs/kyu_4.sum_by_factors.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/sum_by_factors/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sum_of_intervals.readme.rst b/docs/kyu_4.sum_of_intervals.readme.rst deleted file mode 100644 index ff39d6e4116..00000000000 --- a/docs/kyu_4.sum_of_intervals.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/sum_of_intervals/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.the_greatest_warrior.readme.rst b/docs/kyu_4.the_greatest_warrior.readme.rst deleted file mode 100644 index 1133f42eb7d..00000000000 --- a/docs/kyu_4.the_greatest_warrior.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/the_greatest_warrior/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.validate_sudoku_with_size.readme.rst b/docs/kyu_4.validate_sudoku_with_size.readme.rst deleted file mode 100644 index b0fa12b8333..00000000000 --- a/docs/kyu_4.validate_sudoku_with_size.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_4/validate_sudoku_with_size/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.human_readable_duration_format.module.rst b/docs/kyu_4/kyu_4.human_readable_duration_format.module.rst similarity index 100% rename from docs/kyu_4.human_readable_duration_format.module.rst rename to docs/kyu_4/kyu_4.human_readable_duration_format.module.rst diff --git a/docs/kyu_4/kyu_4.human_readable_duration_format.readme.rst b/docs/kyu_4/kyu_4.human_readable_duration_format.readme.rst new file mode 100644 index 00000000000..71d1e6de957 --- /dev/null +++ b/docs/kyu_4/kyu_4.human_readable_duration_format.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/human_readable_duration_format/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.human_readable_duration_format.rst b/docs/kyu_4/kyu_4.human_readable_duration_format.rst similarity index 100% rename from docs/kyu_4.human_readable_duration_format.rst rename to docs/kyu_4/kyu_4.human_readable_duration_format.rst diff --git a/docs/kyu_4.most_frequently_used_words.module.rst b/docs/kyu_4/kyu_4.most_frequently_used_words.module.rst similarity index 100% rename from docs/kyu_4.most_frequently_used_words.module.rst rename to docs/kyu_4/kyu_4.most_frequently_used_words.module.rst diff --git a/docs/kyu_4/kyu_4.most_frequently_used_words.readme.rst b/docs/kyu_4/kyu_4.most_frequently_used_words.readme.rst new file mode 100644 index 00000000000..ec87f7f8410 --- /dev/null +++ b/docs/kyu_4/kyu_4.most_frequently_used_words.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/most_frequently_used_words/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.most_frequently_used_words.rst b/docs/kyu_4/kyu_4.most_frequently_used_words.rst similarity index 100% rename from docs/kyu_4.most_frequently_used_words.rst rename to docs/kyu_4/kyu_4.most_frequently_used_words.rst diff --git a/docs/kyu_4.next_bigger_number_with_the_same_digits.module.rst b/docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.module.rst similarity index 100% rename from docs/kyu_4.next_bigger_number_with_the_same_digits.module.rst rename to docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.module.rst diff --git a/docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.readme.rst b/docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.readme.rst new file mode 100644 index 00000000000..16f370f50f1 --- /dev/null +++ b/docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/next_bigger_number_with_the_same_digits/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.next_bigger_number_with_the_same_digits.rst b/docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.rst similarity index 100% rename from docs/kyu_4.next_bigger_number_with_the_same_digits.rst rename to docs/kyu_4/kyu_4.next_bigger_number_with_the_same_digits.rst diff --git a/docs/kyu_4.next_smaller_number_with_the_same_digits.module.rst b/docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.module.rst similarity index 100% rename from docs/kyu_4.next_smaller_number_with_the_same_digits.module.rst rename to docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.module.rst diff --git a/docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.readme.rst b/docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.readme.rst new file mode 100644 index 00000000000..280fc580e2a --- /dev/null +++ b/docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/next_smaller_number_with_the_same_digits/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.next_smaller_number_with_the_same_digits.rst b/docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.rst similarity index 100% rename from docs/kyu_4.next_smaller_number_with_the_same_digits.rst rename to docs/kyu_4/kyu_4.next_smaller_number_with_the_same_digits.rst diff --git a/docs/kyu_4.permutations.module.rst b/docs/kyu_4/kyu_4.permutations.module.rst similarity index 100% rename from docs/kyu_4.permutations.module.rst rename to docs/kyu_4/kyu_4.permutations.module.rst diff --git a/docs/kyu_4/kyu_4.permutations.readme.rst b/docs/kyu_4/kyu_4.permutations.readme.rst new file mode 100644 index 00000000000..0e2730dded0 --- /dev/null +++ b/docs/kyu_4/kyu_4.permutations.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/permutations/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.permutations.rst b/docs/kyu_4/kyu_4.permutations.rst similarity index 100% rename from docs/kyu_4.permutations.rst rename to docs/kyu_4/kyu_4.permutations.rst diff --git a/docs/kyu_4.range_extraction.module.rst b/docs/kyu_4/kyu_4.range_extraction.module.rst similarity index 100% rename from docs/kyu_4.range_extraction.module.rst rename to docs/kyu_4/kyu_4.range_extraction.module.rst diff --git a/docs/kyu_4/kyu_4.range_extraction.readme.rst b/docs/kyu_4/kyu_4.range_extraction.readme.rst new file mode 100644 index 00000000000..54f5657463c --- /dev/null +++ b/docs/kyu_4/kyu_4.range_extraction.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/range_extraction/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.range_extraction.rst b/docs/kyu_4/kyu_4.range_extraction.rst similarity index 100% rename from docs/kyu_4.range_extraction.rst rename to docs/kyu_4/kyu_4.range_extraction.rst diff --git a/docs/kyu_4/kyu_4.readme.rst b/docs/kyu_4/kyu_4.readme.rst new file mode 100644 index 00000000000..d92d00c959f --- /dev/null +++ b/docs/kyu_4/kyu_4.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.rst b/docs/kyu_4/kyu_4.rst similarity index 100% rename from docs/kyu_4.rst rename to docs/kyu_4/kyu_4.rst diff --git a/docs/kyu_4.snail.module.rst b/docs/kyu_4/kyu_4.snail.module.rst similarity index 100% rename from docs/kyu_4.snail.module.rst rename to docs/kyu_4/kyu_4.snail.module.rst diff --git a/docs/kyu_4/kyu_4.snail.readme.rst b/docs/kyu_4/kyu_4.snail.readme.rst new file mode 100644 index 00000000000..da24038ceb6 --- /dev/null +++ b/docs/kyu_4/kyu_4.snail.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/snail/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.snail.rst b/docs/kyu_4/kyu_4.snail.rst similarity index 100% rename from docs/kyu_4.snail.rst rename to docs/kyu_4/kyu_4.snail.rst diff --git a/docs/kyu_4.strings_mix.module.rst b/docs/kyu_4/kyu_4.strings_mix.module.rst similarity index 100% rename from docs/kyu_4.strings_mix.module.rst rename to docs/kyu_4/kyu_4.strings_mix.module.rst diff --git a/docs/kyu_4/kyu_4.strings_mix.readme.rst b/docs/kyu_4/kyu_4.strings_mix.readme.rst new file mode 100644 index 00000000000..9817c306291 --- /dev/null +++ b/docs/kyu_4/kyu_4.strings_mix.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/strings_mix/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.strings_mix.rst b/docs/kyu_4/kyu_4.strings_mix.rst similarity index 100% rename from docs/kyu_4.strings_mix.rst rename to docs/kyu_4/kyu_4.strings_mix.rst diff --git a/docs/kyu_4.strip_comments.module.rst b/docs/kyu_4/kyu_4.strip_comments.module.rst similarity index 100% rename from docs/kyu_4.strip_comments.module.rst rename to docs/kyu_4/kyu_4.strip_comments.module.rst diff --git a/docs/kyu_4/kyu_4.strip_comments.readme.rst b/docs/kyu_4/kyu_4.strip_comments.readme.rst new file mode 100644 index 00000000000..22879eb3c6d --- /dev/null +++ b/docs/kyu_4/kyu_4.strip_comments.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/strip_comments/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.strip_comments.rst b/docs/kyu_4/kyu_4.strip_comments.rst similarity index 100% rename from docs/kyu_4.strip_comments.rst rename to docs/kyu_4/kyu_4.strip_comments.rst diff --git a/docs/kyu_4.sudoku_solution_validator.module.rst b/docs/kyu_4/kyu_4.sudoku_solution_validator.module.rst similarity index 100% rename from docs/kyu_4.sudoku_solution_validator.module.rst rename to docs/kyu_4/kyu_4.sudoku_solution_validator.module.rst diff --git a/docs/kyu_4/kyu_4.sudoku_solution_validator.readme.rst b/docs/kyu_4/kyu_4.sudoku_solution_validator.readme.rst new file mode 100644 index 00000000000..034a178eaa2 --- /dev/null +++ b/docs/kyu_4/kyu_4.sudoku_solution_validator.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/sudoku_solution_validator/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sudoku_solution_validator.rst b/docs/kyu_4/kyu_4.sudoku_solution_validator.rst similarity index 100% rename from docs/kyu_4.sudoku_solution_validator.rst rename to docs/kyu_4/kyu_4.sudoku_solution_validator.rst diff --git a/docs/kyu_4.sum_by_factors.module.rst b/docs/kyu_4/kyu_4.sum_by_factors.module.rst similarity index 100% rename from docs/kyu_4.sum_by_factors.module.rst rename to docs/kyu_4/kyu_4.sum_by_factors.module.rst diff --git a/docs/kyu_4/kyu_4.sum_by_factors.readme.rst b/docs/kyu_4/kyu_4.sum_by_factors.readme.rst new file mode 100644 index 00000000000..dc4aafba686 --- /dev/null +++ b/docs/kyu_4/kyu_4.sum_by_factors.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/sum_by_factors/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sum_by_factors.rst b/docs/kyu_4/kyu_4.sum_by_factors.rst similarity index 100% rename from docs/kyu_4.sum_by_factors.rst rename to docs/kyu_4/kyu_4.sum_by_factors.rst diff --git a/docs/kyu_4.sum_of_intervals.module.rst b/docs/kyu_4/kyu_4.sum_of_intervals.module.rst similarity index 100% rename from docs/kyu_4.sum_of_intervals.module.rst rename to docs/kyu_4/kyu_4.sum_of_intervals.module.rst diff --git a/docs/kyu_4/kyu_4.sum_of_intervals.readme.rst b/docs/kyu_4/kyu_4.sum_of_intervals.readme.rst new file mode 100644 index 00000000000..ef20f148148 --- /dev/null +++ b/docs/kyu_4/kyu_4.sum_of_intervals.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/sum_of_intervals/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.sum_of_intervals.rst b/docs/kyu_4/kyu_4.sum_of_intervals.rst similarity index 100% rename from docs/kyu_4.sum_of_intervals.rst rename to docs/kyu_4/kyu_4.sum_of_intervals.rst diff --git a/docs/kyu_4.the_greatest_warrior.module.rst b/docs/kyu_4/kyu_4.the_greatest_warrior.module.rst similarity index 100% rename from docs/kyu_4.the_greatest_warrior.module.rst rename to docs/kyu_4/kyu_4.the_greatest_warrior.module.rst diff --git a/docs/kyu_4/kyu_4.the_greatest_warrior.readme.rst b/docs/kyu_4/kyu_4.the_greatest_warrior.readme.rst new file mode 100644 index 00000000000..ac7f3d9a3b1 --- /dev/null +++ b/docs/kyu_4/kyu_4.the_greatest_warrior.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/the_greatest_warrior/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.the_greatest_warrior.rst b/docs/kyu_4/kyu_4.the_greatest_warrior.rst similarity index 100% rename from docs/kyu_4.the_greatest_warrior.rst rename to docs/kyu_4/kyu_4.the_greatest_warrior.rst diff --git a/docs/kyu_4.validate_sudoku_with_size.module.rst b/docs/kyu_4/kyu_4.validate_sudoku_with_size.module.rst similarity index 100% rename from docs/kyu_4.validate_sudoku_with_size.module.rst rename to docs/kyu_4/kyu_4.validate_sudoku_with_size.module.rst diff --git a/docs/kyu_4/kyu_4.validate_sudoku_with_size.readme.rst b/docs/kyu_4/kyu_4.validate_sudoku_with_size.readme.rst new file mode 100644 index 00000000000..11a07c0f40e --- /dev/null +++ b/docs/kyu_4/kyu_4.validate_sudoku_with_size.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_4/validate_sudoku_with_size/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_4.validate_sudoku_with_size.rst b/docs/kyu_4/kyu_4.validate_sudoku_with_size.rst similarity index 100% rename from docs/kyu_4.validate_sudoku_with_size.rst rename to docs/kyu_4/kyu_4.validate_sudoku_with_size.rst diff --git a/docs/kyu_5.readme.rst b/docs/kyu_5.readme.rst deleted file mode 100644 index a83b9e5461b..00000000000 --- a/docs/kyu_5.readme.rst +++ /dev/null @@ -1,5 +0,0 @@ -README -====== - -.. include:: ../kyu_5/README.md - :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.rst b/docs/kyu_5.rst deleted file mode 100644 index b29b1c5ae10..00000000000 --- a/docs/kyu_5.rst +++ /dev/null @@ -1,46 +0,0 @@ -kyu\_5 package -============== - -Subpackages ------------ - -.. toctree:: - :maxdepth: 4 - - kyu_5.readme - kyu_5.alphabet_wars_nuclear_strike - kyu_5.count_ip_addresses - kyu_5.did_i_finish_my_sudoku - kyu_5.diophantine_equation - kyu_5.directions_reduction - kyu_5.extract_the_domain_name_from_url - kyu_5.fibonacci_streaming - kyu_5.find_the_safest_places_in_town - kyu_5.find_the_smallest - kyu_5.first_non_repeating_character - kyu_5.flatten - kyu_5.human_readable_time - kyu_5.integers_recreation_one - kyu_5.josephus_survivor - kyu_5.master_your_primes_sieve_with_memoization - kyu_5.moving_zeros_to_the_end - kyu_5.multidimensional_neighbourhood - kyu_5.not_very_secure - kyu_5.number_of_trailing_zeros_of_n - kyu_5.simple_pig_latin - kyu_5.sports_league_table_ranking - kyu_5.string_incrementer - kyu_5.sum_of_pairs - kyu_5.the_hashtag_generator - kyu_5.tic_tac_toe_checker - kyu_5.valid_parentheses - kyu_5.where_my_anagrams_at - -Module contents ---------------- - -.. automodule:: kyu_5 - :members: - :undoc-members: - :show-inheritance: - :private-members: diff --git a/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.module.rst b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.module.rst new file mode 100644 index 00000000000..d5503f66e64 --- /dev/null +++ b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.module.rst @@ -0,0 +1,11 @@ +kyu\_5.alphabet\_wars\_nuclear\_strike.module module +==================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.alphabet_wars_nuclear_strike.readme + kyu_5.alphabet_wars_nuclear_strike \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst new file mode 100644 index 00000000000..60dfe55265d --- /dev/null +++ b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/alphabet_wars_nuclear_strike/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.alphabet_wars_nuclear_strike.rst b/docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.rst similarity index 100% rename from docs/kyu_5.alphabet_wars_nuclear_strike.rst rename to docs/kyu_5/kyu_5.alphabet_wars_nuclear_strike.rst diff --git a/docs/kyu_5/kyu_5.count_ip_addresses.module.rst b/docs/kyu_5/kyu_5.count_ip_addresses.module.rst new file mode 100644 index 00000000000..c3337cb84bb --- /dev/null +++ b/docs/kyu_5/kyu_5.count_ip_addresses.module.rst @@ -0,0 +1,11 @@ +kyu\_5.count\_ip\_addresses.module module +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.count_ip_addresses.readme + kyu_5.count_ip_addresses \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst b/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst new file mode 100644 index 00000000000..980471c7325 --- /dev/null +++ b/docs/kyu_5/kyu_5.count_ip_addresses.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/count_ip_addresses/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.count_ip_addresses.rst b/docs/kyu_5/kyu_5.count_ip_addresses.rst similarity index 100% rename from docs/kyu_5.count_ip_addresses.rst rename to docs/kyu_5/kyu_5.count_ip_addresses.rst diff --git a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst b/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst new file mode 100644 index 00000000000..d83ce911efe --- /dev/null +++ b/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.module.rst @@ -0,0 +1,11 @@ +kyu\_5.did\_i\_finish\_my\_sudoku.module module +=============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.did_i_finish_my_sudoku.readme + kyu_5.did_i_finish_my_sudoku \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst b/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst new file mode 100644 index 00000000000..1ca5ad1fabc --- /dev/null +++ b/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/did_i_finish_my_sudoku/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.did_i_finish_my_sudoku.rst b/docs/kyu_5/kyu_5.did_i_finish_my_sudoku.rst similarity index 100% rename from docs/kyu_5.did_i_finish_my_sudoku.rst rename to docs/kyu_5/kyu_5.did_i_finish_my_sudoku.rst diff --git a/docs/kyu_5/kyu_5.diophantine_equation.module.rst b/docs/kyu_5/kyu_5.diophantine_equation.module.rst new file mode 100644 index 00000000000..527a58f1238 --- /dev/null +++ b/docs/kyu_5/kyu_5.diophantine_equation.module.rst @@ -0,0 +1,11 @@ +kyu\_5.diophantine\_equation.module module +========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.diophantine_equation.readme + kyu_5.diophantine_equation \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.diophantine_equation.readme.rst b/docs/kyu_5/kyu_5.diophantine_equation.readme.rst new file mode 100644 index 00000000000..d33dd4757b8 --- /dev/null +++ b/docs/kyu_5/kyu_5.diophantine_equation.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/diophantine_equation/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.diophantine_equation.rst b/docs/kyu_5/kyu_5.diophantine_equation.rst similarity index 100% rename from docs/kyu_5.diophantine_equation.rst rename to docs/kyu_5/kyu_5.diophantine_equation.rst diff --git a/docs/kyu_5/kyu_5.directions_reduction.module.rst b/docs/kyu_5/kyu_5.directions_reduction.module.rst new file mode 100644 index 00000000000..603c783eeb5 --- /dev/null +++ b/docs/kyu_5/kyu_5.directions_reduction.module.rst @@ -0,0 +1,11 @@ +kyu\_5.directions\_reduction.module module +========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.directions_reduction.readme + kyu_5.directions_reduction \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.directions_reduction.readme.rst b/docs/kyu_5/kyu_5.directions_reduction.readme.rst new file mode 100644 index 00000000000..cdfac21aa1e --- /dev/null +++ b/docs/kyu_5/kyu_5.directions_reduction.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/directions_reduction/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.directions_reduction.rst b/docs/kyu_5/kyu_5.directions_reduction.rst similarity index 100% rename from docs/kyu_5.directions_reduction.rst rename to docs/kyu_5/kyu_5.directions_reduction.rst diff --git a/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.module.rst b/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.module.rst new file mode 100644 index 00000000000..5ef30e065dd --- /dev/null +++ b/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.module.rst @@ -0,0 +1,11 @@ +kyu\_5.extract\_the\_domain\_name\_from\_url.module module +========================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.extract_the_domain_name_from_url.readme + kyu_5.extract_the_domain_name_from_url \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.readme.rst b/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.readme.rst new file mode 100644 index 00000000000..b474da4a3f4 --- /dev/null +++ b/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/extract_the_domain_name_from_url/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.extract_the_domain_name_from_url.rst b/docs/kyu_5/kyu_5.extract_the_domain_name_from_url.rst similarity index 100% rename from docs/kyu_5.extract_the_domain_name_from_url.rst rename to docs/kyu_5/kyu_5.extract_the_domain_name_from_url.rst diff --git a/docs/kyu_5/kyu_5.fibonacci_streaming.module.rst b/docs/kyu_5/kyu_5.fibonacci_streaming.module.rst new file mode 100644 index 00000000000..61cb945377d --- /dev/null +++ b/docs/kyu_5/kyu_5.fibonacci_streaming.module.rst @@ -0,0 +1,11 @@ +kyu\_5.fibonacci\_streaming.module module +========================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.fibonacci_streaming.readme + kyu_5.fibonacci_streaming \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.fibonacci_streaming.readme.rst b/docs/kyu_5/kyu_5.fibonacci_streaming.readme.rst new file mode 100644 index 00000000000..28019c5e559 --- /dev/null +++ b/docs/kyu_5/kyu_5.fibonacci_streaming.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/fibonacci_streaming/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.fibonacci_streaming.rst b/docs/kyu_5/kyu_5.fibonacci_streaming.rst similarity index 100% rename from docs/kyu_5.fibonacci_streaming.rst rename to docs/kyu_5/kyu_5.fibonacci_streaming.rst diff --git a/docs/kyu_5/kyu_5.find_the_safest_places_in_town.module.rst b/docs/kyu_5/kyu_5.find_the_safest_places_in_town.module.rst new file mode 100644 index 00000000000..6abf202dd7c --- /dev/null +++ b/docs/kyu_5/kyu_5.find_the_safest_places_in_town.module.rst @@ -0,0 +1,11 @@ +kyu\_5.find\_the\_safest\_places\_in\_town.module module +======================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.find_the_safest_places_in_town.readme + kyu_5.find_the_safest_places_in_town \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.find_the_safest_places_in_town.readme.rst b/docs/kyu_5/kyu_5.find_the_safest_places_in_town.readme.rst new file mode 100644 index 00000000000..30dfd119dc7 --- /dev/null +++ b/docs/kyu_5/kyu_5.find_the_safest_places_in_town.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/find_the_safest_places_in_town/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.find_the_safest_places_in_town.rst b/docs/kyu_5/kyu_5.find_the_safest_places_in_town.rst similarity index 100% rename from docs/kyu_5.find_the_safest_places_in_town.rst rename to docs/kyu_5/kyu_5.find_the_safest_places_in_town.rst diff --git a/docs/kyu_5/kyu_5.find_the_smallest.module.rst b/docs/kyu_5/kyu_5.find_the_smallest.module.rst new file mode 100644 index 00000000000..87a080cb0df --- /dev/null +++ b/docs/kyu_5/kyu_5.find_the_smallest.module.rst @@ -0,0 +1,11 @@ +kyu\_5.find\_the\_smallest.module module +======================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.find_the_smallest.readme + kyu_5.find_the_smallest \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.find_the_smallest.readme.rst b/docs/kyu_5/kyu_5.find_the_smallest.readme.rst new file mode 100644 index 00000000000..3bcac438205 --- /dev/null +++ b/docs/kyu_5/kyu_5.find_the_smallest.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/find_the_smallest/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.find_the_smallest.rst b/docs/kyu_5/kyu_5.find_the_smallest.rst similarity index 100% rename from docs/kyu_5.find_the_smallest.rst rename to docs/kyu_5/kyu_5.find_the_smallest.rst diff --git a/docs/kyu_5/kyu_5.first_non_repeating_character.module.rst b/docs/kyu_5/kyu_5.first_non_repeating_character.module.rst new file mode 100644 index 00000000000..83a58a8d68f --- /dev/null +++ b/docs/kyu_5/kyu_5.first_non_repeating_character.module.rst @@ -0,0 +1,11 @@ +kyu\_5.first\_non\_repeating\_character.module module +===================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.first_non_repeating_character.readme + kyu_5.first_non_repeating_character \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.first_non_repeating_character.readme.rst b/docs/kyu_5/kyu_5.first_non_repeating_character.readme.rst new file mode 100644 index 00000000000..4f9bd906db7 --- /dev/null +++ b/docs/kyu_5/kyu_5.first_non_repeating_character.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/first_non_repeating_character/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.first_non_repeating_character.rst b/docs/kyu_5/kyu_5.first_non_repeating_character.rst similarity index 100% rename from docs/kyu_5.first_non_repeating_character.rst rename to docs/kyu_5/kyu_5.first_non_repeating_character.rst diff --git a/docs/kyu_5/kyu_5.flatten.module.rst b/docs/kyu_5/kyu_5.flatten.module.rst new file mode 100644 index 00000000000..e732d109712 --- /dev/null +++ b/docs/kyu_5/kyu_5.flatten.module.rst @@ -0,0 +1,11 @@ +kyu\_5.flatten.module module +============================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.flatten.readme + kyu_5.flatten \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.flatten.readme.rst b/docs/kyu_5/kyu_5.flatten.readme.rst new file mode 100644 index 00000000000..4b44933ba34 --- /dev/null +++ b/docs/kyu_5/kyu_5.flatten.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/flatten/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.flatten.rst b/docs/kyu_5/kyu_5.flatten.rst similarity index 100% rename from docs/kyu_5.flatten.rst rename to docs/kyu_5/kyu_5.flatten.rst diff --git a/docs/kyu_5/kyu_5.human_readable_time.module.rst b/docs/kyu_5/kyu_5.human_readable_time.module.rst new file mode 100644 index 00000000000..dcf080b1426 --- /dev/null +++ b/docs/kyu_5/kyu_5.human_readable_time.module.rst @@ -0,0 +1,11 @@ +kyu\_5.human\_readable\_time.module module +========================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.human_readable_time.readme + kyu_5.human_readable_time \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.human_readable_time.readme.rst b/docs/kyu_5/kyu_5.human_readable_time.readme.rst new file mode 100644 index 00000000000..6efc77406f8 --- /dev/null +++ b/docs/kyu_5/kyu_5.human_readable_time.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/human_readable_time/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.human_readable_time.rst b/docs/kyu_5/kyu_5.human_readable_time.rst similarity index 100% rename from docs/kyu_5.human_readable_time.rst rename to docs/kyu_5/kyu_5.human_readable_time.rst diff --git a/docs/kyu_5/kyu_5.integers_recreation_one.module.rst b/docs/kyu_5/kyu_5.integers_recreation_one.module.rst new file mode 100644 index 00000000000..49be3644bfb --- /dev/null +++ b/docs/kyu_5/kyu_5.integers_recreation_one.module.rst @@ -0,0 +1,11 @@ +kyu\_5.integers\_recreation\_one.module module +============================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.integers_recreation_one.readme + kyu_5.integers_recreation_one \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.integers_recreation_one.readme.rst b/docs/kyu_5/kyu_5.integers_recreation_one.readme.rst new file mode 100644 index 00000000000..55c18102d97 --- /dev/null +++ b/docs/kyu_5/kyu_5.integers_recreation_one.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/integers_recreation_one/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.integers_recreation_one.rst b/docs/kyu_5/kyu_5.integers_recreation_one.rst similarity index 100% rename from docs/kyu_5.integers_recreation_one.rst rename to docs/kyu_5/kyu_5.integers_recreation_one.rst diff --git a/docs/kyu_5/kyu_5.josephus_survivor.module.rst b/docs/kyu_5/kyu_5.josephus_survivor.module.rst new file mode 100644 index 00000000000..195a9808342 --- /dev/null +++ b/docs/kyu_5/kyu_5.josephus_survivor.module.rst @@ -0,0 +1,11 @@ +kyu\_5.josephus\_survivor.module module +======================================= + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.josephus_survivor.readme + kyu_5.josephus_survivor \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.josephus_survivor.readme.rst b/docs/kyu_5/kyu_5.josephus_survivor.readme.rst new file mode 100644 index 00000000000..33ccc916968 --- /dev/null +++ b/docs/kyu_5/kyu_5.josephus_survivor.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/josephus_survivor/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.josephus_survivor.rst b/docs/kyu_5/kyu_5.josephus_survivor.rst similarity index 100% rename from docs/kyu_5.josephus_survivor.rst rename to docs/kyu_5/kyu_5.josephus_survivor.rst diff --git a/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.module.rst b/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.module.rst new file mode 100644 index 00000000000..47815c9aeaf --- /dev/null +++ b/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.module.rst @@ -0,0 +1,11 @@ +kyu\_5.master\_your\_primes\_sieve\_with\_memoization.module module +=================================================================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.master_your_primes_sieve_with_memoization.readme + kyu_5.master_your_primes_sieve_with_memoization \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.readme.rst b/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.readme.rst new file mode 100644 index 00000000000..a89c4d416c6 --- /dev/null +++ b/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/master_your_primes_sieve_with_memoization/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.master_your_primes_sieve_with_memoization.rst b/docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.rst similarity index 100% rename from docs/kyu_5.master_your_primes_sieve_with_memoization.rst rename to docs/kyu_5/kyu_5.master_your_primes_sieve_with_memoization.rst diff --git a/docs/kyu_5/kyu_5.moving_zeros_to_the_end.module.rst b/docs/kyu_5/kyu_5.moving_zeros_to_the_end.module.rst new file mode 100644 index 00000000000..3fa026eb45b --- /dev/null +++ b/docs/kyu_5/kyu_5.moving_zeros_to_the_end.module.rst @@ -0,0 +1,11 @@ +kyu\_5.moving\_zeros\_to\_the\_end.module module +================================================ + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.moving_zeros_to_the_end.readme + kyu_5.moving_zeros_to_the_end \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.moving_zeros_to_the_end.readme.rst b/docs/kyu_5/kyu_5.moving_zeros_to_the_end.readme.rst new file mode 100644 index 00000000000..8ddc2daa7be --- /dev/null +++ b/docs/kyu_5/kyu_5.moving_zeros_to_the_end.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/moving_zeros_to_the_end/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5.moving_zeros_to_the_end.rst b/docs/kyu_5/kyu_5.moving_zeros_to_the_end.rst similarity index 100% rename from docs/kyu_5.moving_zeros_to_the_end.rst rename to docs/kyu_5/kyu_5.moving_zeros_to_the_end.rst diff --git a/docs/kyu_5.multidimensional_neighbourhood.rst b/docs/kyu_5/kyu_5.multidimensional_neighbourhood.rst similarity index 100% rename from docs/kyu_5.multidimensional_neighbourhood.rst rename to docs/kyu_5/kyu_5.multidimensional_neighbourhood.rst diff --git a/docs/kyu_5.not_very_secure.rst b/docs/kyu_5/kyu_5.not_very_secure.rst similarity index 100% rename from docs/kyu_5.not_very_secure.rst rename to docs/kyu_5/kyu_5.not_very_secure.rst diff --git a/docs/kyu_5.number_of_trailing_zeros_of_n.rst b/docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.rst similarity index 100% rename from docs/kyu_5.number_of_trailing_zeros_of_n.rst rename to docs/kyu_5/kyu_5.number_of_trailing_zeros_of_n.rst diff --git a/docs/kyu_5/kyu_5.readme.rst b/docs/kyu_5/kyu_5.readme.rst new file mode 100644 index 00000000000..882c338233d --- /dev/null +++ b/docs/kyu_5/kyu_5.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../../kyu_5/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_5/kyu_5.rst b/docs/kyu_5/kyu_5.rst new file mode 100644 index 00000000000..7c8e83b7c78 --- /dev/null +++ b/docs/kyu_5/kyu_5.rst @@ -0,0 +1,46 @@ +kyu\_5 package +============== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_5.readme + kyu_5.alphabet_wars_nuclear_strike.module + kyu_5.count_ip_addresses.module + kyu_5.did_i_finish_my_sudoku.module + kyu_5.diophantine_equation.module + kyu_5.directions_reduction.module + kyu_5.extract_the_domain_name_from_url.module + kyu_5.fibonacci_streaming.module + kyu_5.find_the_safest_places_in_town.module + kyu_5.find_the_smallest.module + kyu_5.first_non_repeating_character.module + kyu_5.flatten.module + kyu_5.human_readable_time.module + kyu_5.integers_recreation_one.module + kyu_5.josephus_survivor.module + kyu_5.master_your_primes_sieve_with_memoization.module + kyu_5.moving_zeros_to_the_end.module + kyu_5.multidimensional_neighbourhood + kyu_5.not_very_secure + kyu_5.number_of_trailing_zeros_of_n + kyu_5.simple_pig_latin + kyu_5.sports_league_table_ranking + kyu_5.string_incrementer + kyu_5.sum_of_pairs + kyu_5.the_hashtag_generator + kyu_5.tic_tac_toe_checker + kyu_5.valid_parentheses + kyu_5.where_my_anagrams_at + +Module contents +--------------- + +.. automodule:: kyu_5 + :members: + :undoc-members: + :show-inheritance: + :private-members: diff --git a/docs/kyu_5.simple_pig_latin.rst b/docs/kyu_5/kyu_5.simple_pig_latin.rst similarity index 100% rename from docs/kyu_5.simple_pig_latin.rst rename to docs/kyu_5/kyu_5.simple_pig_latin.rst diff --git a/docs/kyu_5.sports_league_table_ranking.rst b/docs/kyu_5/kyu_5.sports_league_table_ranking.rst similarity index 100% rename from docs/kyu_5.sports_league_table_ranking.rst rename to docs/kyu_5/kyu_5.sports_league_table_ranking.rst diff --git a/docs/kyu_5.string_incrementer.rst b/docs/kyu_5/kyu_5.string_incrementer.rst similarity index 100% rename from docs/kyu_5.string_incrementer.rst rename to docs/kyu_5/kyu_5.string_incrementer.rst diff --git a/docs/kyu_5.sum_of_pairs.rst b/docs/kyu_5/kyu_5.sum_of_pairs.rst similarity index 100% rename from docs/kyu_5.sum_of_pairs.rst rename to docs/kyu_5/kyu_5.sum_of_pairs.rst diff --git a/docs/kyu_5.the_hashtag_generator.rst b/docs/kyu_5/kyu_5.the_hashtag_generator.rst similarity index 100% rename from docs/kyu_5.the_hashtag_generator.rst rename to docs/kyu_5/kyu_5.the_hashtag_generator.rst diff --git a/docs/kyu_5.tic_tac_toe_checker.rst b/docs/kyu_5/kyu_5.tic_tac_toe_checker.rst similarity index 100% rename from docs/kyu_5.tic_tac_toe_checker.rst rename to docs/kyu_5/kyu_5.tic_tac_toe_checker.rst diff --git a/docs/kyu_5.valid_parentheses.rst b/docs/kyu_5/kyu_5.valid_parentheses.rst similarity index 100% rename from docs/kyu_5.valid_parentheses.rst rename to docs/kyu_5/kyu_5.valid_parentheses.rst diff --git a/docs/kyu_5.where_my_anagrams_at.rst b/docs/kyu_5/kyu_5.where_my_anagrams_at.rst similarity index 100% rename from docs/kyu_5.where_my_anagrams_at.rst rename to docs/kyu_5/kyu_5.where_my_anagrams_at.rst diff --git a/docs/kyu_6.rst b/docs/kyu_6.rst index 35a1529b1ee..fdd602fdf14 100644 --- a/docs/kyu_6.rst +++ b/docs/kyu_6.rst @@ -37,12 +37,14 @@ Subpackages kyu_6.pyramid_array kyu_6.rotate_the_letters_of_each_element kyu_6.row_of_the_odd_triangle + kyu_6.scheduling.module kyu_6.sort_the_odd kyu_6.string_subpattern_recognition_1 kyu_6.string_subpattern_recognition_2 kyu_6.string_subpattern_recognition_3 kyu_6.string_transformer kyu_6.sum_of_digits_digital_root + kyu_6.sums_of_parts kyu_6.unique_in_order kyu_6.vasya_clerk kyu_6.who_likes_it diff --git a/docs/kyu_6.scheduling.module.rst b/docs/kyu_6.scheduling.module.rst new file mode 100644 index 00000000000..c18a6e4cde6 --- /dev/null +++ b/docs/kyu_6.scheduling.module.rst @@ -0,0 +1,11 @@ +kyu\_6.scheduling.module module +=============================== + +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + kyu_6.scheduling.readme + kyu_6.scheduling \ No newline at end of file diff --git a/docs/kyu_6.scheduling.readme.rst b/docs/kyu_6.scheduling.readme.rst new file mode 100644 index 00000000000..64a08fe635d --- /dev/null +++ b/docs/kyu_6.scheduling.readme.rst @@ -0,0 +1,5 @@ +README +====== + +.. include:: ../kyu_6/scheduling/README.md + :parser: myst_parser.sphinx_ \ No newline at end of file diff --git a/docs/kyu_6.scheduling.rst b/docs/kyu_6.scheduling.rst new file mode 100644 index 00000000000..42a4e15d559 --- /dev/null +++ b/docs/kyu_6.scheduling.rst @@ -0,0 +1,32 @@ +kyu\_6.scheduling package +========================= + +Submodules +---------- + +kyu\_6.scheduling.solution module +--------------------------------- + +.. automodule:: kyu_6.scheduling.solution + :members: + :undoc-members: + :show-inheritance: + :private-members: + +kyu\_6.scheduling.test\_solution module +--------------------------------------- + +.. automodule:: kyu_6.scheduling.test_solution + :members: + :undoc-members: + :show-inheritance: + :private-members: + +Module contents +--------------- + +.. automodule:: kyu_6.scheduling + :members: + :undoc-members: + :show-inheritance: + :private-members: diff --git a/docs/kyu_6.sums_of_parts.rst b/docs/kyu_6.sums_of_parts.rst new file mode 100644 index 00000000000..fc87580e72d --- /dev/null +++ b/docs/kyu_6.sums_of_parts.rst @@ -0,0 +1,32 @@ +kyu\_6.sums\_of\_parts package +============================== + +Submodules +---------- + +kyu\_6.sums\_of\_parts.solution module +-------------------------------------- + +.. automodule:: kyu_6.sums_of_parts.solution + :members: + :undoc-members: + :show-inheritance: + :private-members: + +kyu\_6.sums\_of\_parts.test\_solution module +-------------------------------------------- + +.. automodule:: kyu_6.sums_of_parts.test_solution + :members: + :undoc-members: + :show-inheritance: + :private-members: + +Module contents +--------------- + +.. automodule:: kyu_6.sums_of_parts + :members: + :undoc-members: + :show-inheritance: + :private-members: diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 6c297d42e48..838725fb105 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -58,8 +58,6 @@ def bracket_start(strings: list) -> int: :return: int """ a: int = ([i for i, strg in enumerate(strings) if strg == '('])[-1] - b: int = ''.join(strings).rindex('(') - print(f"str: {strings}, a: {a}, b: {b}") return a diff --git a/kyu_2/evaluate_mathematical_expression/test_evaluate.py b/kyu_2/evaluate_mathematical_expression/test_evaluate.py index cb9f8073717..8e0ca54451b 100644 --- a/kyu_2/evaluate_mathematical_expression/test_evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/test_evaluate.py @@ -92,3 +92,7 @@ def test_calc(self): f"compare vs expected ({expected})"): self.assertEqual(expected, actual_result) + + +if __name__ == '__main__': + unittest.main() diff --git a/kyu_3/line_safari_is_that_a_line/test_line_negative.py b/kyu_3/line_safari_is_that_a_line/test_line_negative.py index 95be3f984ce..4cb70b0325a 100644 --- a/kyu_3/line_safari_is_that_a_line/test_line_negative.py +++ b/kyu_3/line_safari_is_that_a_line/test_line_negative.py @@ -73,11 +73,7 @@ def test_line_negative(self): # pylint: enable-msg=R0801 expected: bool = False for grid in test_data: - actual_result: bool = line(grid) - for row in grid: - print(row) - print_log(expected=expected, actual_result=actual_result) diff --git a/kyu_3/line_safari_is_that_a_line/test_line_positive.py b/kyu_3/line_safari_is_that_a_line/test_line_positive.py index 5afe9f8ee1c..28bd48853db 100644 --- a/kyu_3/line_safari_is_that_a_line/test_line_positive.py +++ b/kyu_3/line_safari_is_that_a_line/test_line_positive.py @@ -87,11 +87,7 @@ def test_line_positive(self): expected: bool = True for grid in test_data: - actual_result: bool = line(grid) - for row in grid: - print(row) - print_log(expected=expected, actual_result=actual_result) diff --git a/kyu_3/line_safari_is_that_a_line/test_walker.py b/kyu_3/line_safari_is_that_a_line/test_walker.py index 5cfe0d4f4e9..42f053f7db1 100644 --- a/kyu_3/line_safari_is_that_a_line/test_walker.py +++ b/kyu_3/line_safari_is_that_a_line/test_walker.py @@ -7,7 +7,6 @@ # ALGORITHMS STRINGS import unittest -import pytest import allure from utils.log_func import print_log from kyu_3.line_safari_is_that_a_line.walker_class import Walker @@ -25,7 +24,6 @@ @allure.link( url='https://www.codewars.com/kata/59c5d0b0a25c8c99ca000237', name='Source/Kata') -@pytest.mark.skip(reason="The solution is not ready") # pylint: enable-msg=R0801 class WalkerClassTestCase(unittest.TestCase): """ @@ -127,7 +125,6 @@ def test_starting_position_from_negatives(self): expected: str = 'X' for grid in test_data: - walker: Walker = Walker(grid) actual_result: str = walker.position diff --git a/kyu_3/line_safari_is_that_a_line/walker_class.py b/kyu_3/line_safari_is_that_a_line/walker_class.py index 98dd68c059d..dec29cfe092 100644 --- a/kyu_3/line_safari_is_that_a_line/walker_class.py +++ b/kyu_3/line_safari_is_that_a_line/walker_class.py @@ -9,8 +9,8 @@ class Walker: """ Walker class: make moves, check directions, etc... """ + def __init__(self, grid: list): - # print('__init__') self.__grid: list = grid self.__is_start: bool = True self.__position: dict = self.__get_start_point() @@ -21,34 +21,28 @@ def __set_initial_direction(self) -> dict: 'left': False, 'right': False, 'up': False, - 'down': False, - } + 'down': False} # coordinates row: int = self.__position['row'] col: int = self.__position['col'] # up - if row - 1 >= 0: - if self.__grid[row - 1][col] in 'X|+': - direction['up'] = True + if row - 1 >= 0 and self.__grid[row - 1][col] in 'X|+': + direction['up'] = True # down - if row + 1 < len(self.__grid): - if self.__grid[row + 1][col] in 'X|+': - direction['down'] = True + if row + 1 < len(self.__grid) and self.__grid[row + 1][col] in 'X|+': + direction['down'] = True # left - if col - 1 >= 0: - if self.__grid[row][col - 1] in 'X+-': - direction['left'] = True + if col - 1 >= 0 and self.__grid[row][col - 1] in 'X+-': + direction['left'] = True # right - if col + 1 < len(self.__grid[row]): - if self.__grid[row][col + 1] in 'X+-': - direction['right'] = True + if col + 1 < len(self.__grid[row]) and self.__grid[row][col + 1] in 'X+-': + direction['right'] = True - print(f"\nINITIAL DIRECTION: {direction}") return direction @property @@ -88,15 +82,6 @@ def move(self) -> None: if self.__is_start: self.__is_start = False # 3. set direction - # DEBUG ONLY - row: int = self.__position['row'] - col: int = self.__position['col'] - direction = [key for key, item in self.__direction if item] - print(f'\nchar: {self.__grid[row][col]}, ' - f'direction: {direction}, ' - f'row: {row}, ' - f'col: {col}, ' - f'is_done: {self.is_done}\n') self.__set_direction() @property @@ -108,16 +93,12 @@ def is_done(self) -> bool: """ if self.__is_start: if len([val for val in self.__direction.values() if val]) != 1: - print('\nRule #1') return True else: if self.position == 'X' and not self.__is_start: - print('\nRule #2') return True if len([val for val in self.__direction.values() if val]) != 1: - print('\nRule #3') - print(self.__direction) return True return False @@ -148,46 +129,70 @@ def __reset_direction(self) -> None: for key in self.__direction: self.__direction[key] = False - def __set_direction(self) -> None: + def position_plus(self, previous_position) -> None: """ - Update directions based on current - position and previous direction - :return: None + Process cells if current position is + + :param previous_position: + :return: """ - prev_row = self.__position['prev_row'] - prev_col = self.__position['prev_col'] - previous_position = self.__grid[prev_row][prev_col] - - # reset all directions - self.__reset_direction() - print(f'prev: {previous_position}, pos: {self.position}') - - if self.position == '+' and (previous_position in ('-', 'X')): + if self.position == '+' and previous_position in '-X': self.__direction['up'] = self.__test_up() self.__direction['down'] = self.__test_down() - elif self.position == '+' and previous_position == '|': + + if self.position == '+' and previous_position == '|': self.__direction['left'] = self.__test_left() self.__direction['right'] = self.__test_right() - elif self.position == '+' and previous_position == '+': - if self.__position['col'] == self.__position['prev_col']: - self.__direction['left'] = self.__test_left() - self.__direction['right'] = self.__test_right() - elif self.__position['row'] == self.__position['prev_row']: - self.__direction['up'] = self.__test_up() - self.__direction['down'] = self.__test_down() - elif ((self.position == '-' and (previous_position in ('-', 'X'))) - or (self.position == '-' and previous_position == '+')): + + if self.position == previous_position == '+' and \ + self.__position['col'] == self.__position['prev_col']: + self.__direction['left, '] = self.__test_left() + self.__direction['right'] = self.__test_right() + + if self.position == previous_position == '+' and \ + self.__position['row'] == self.__position['prev_row']: + self.__direction['up'] = self.__test_up() + self.__direction['down'] = self.__test_down() + + def position_minus(self, previous_position) -> None: + """ + Process cells if current position is - + :param previous_position: + :return: + """ + if self.position == '-' and previous_position in '-X+': if self.__position['col'] < self.__position['prev_col']: self.__direction['left'] = self.__test_left() elif self.__position['col'] > self.__position['prev_col']: self.__direction['right'] = self.__test_right() - elif ((self.position == '|' and (previous_position in ('|', 'X'))) - or (self.position == '|' and previous_position == '+')): + + def position_pipe(self, previous_position) -> None: + """ + Process cells if current position is | + :param previous_position: + :return: + """ + if self.position == '|' and previous_position in '|X+': if self.__position['row'] < self.__position['prev_row']: self.__direction['up'] = self.__test_up() elif self.__position['row'] > self.__position['prev_row']: self.__direction['down'] = self.__test_down() + def __set_direction(self) -> None: + """ + Update directions based on current + position and previous direction + :return: None + """ + prev_row = self.__position['prev_row'] + prev_col = self.__position['prev_col'] + previous_position = self.__grid[prev_row][prev_col] + + # reset all directions + self.__reset_direction() + self.position_plus(previous_position) + self.position_minus(previous_position) + self.position_pipe(previous_position) + def __test_up(self) -> bool: row: int = self.__position['row'] col: int = self.__position['col'] diff --git a/kyu_4/human_readable_duration_format/format_duration.py b/kyu_4/human_readable_duration_format/format_duration.py index 4065d79cb7d..3bf8955a6a3 100644 --- a/kyu_4/human_readable_duration_format/format_duration.py +++ b/kyu_4/human_readable_duration_format/format_duration.py @@ -59,24 +59,76 @@ def format_duration(seconds: int) -> str: if years > 0: result += f'{year}' + result = format_days(days, day, result) + result = format_hours(hours, hour, result) + result = format_minutes(minutes, seconds, minute, result) + result = format_seconds(seconds, second, result) + + return result + + +def format_days(days: int, day: str, result: str) -> str: + """ + Format days for the final string + :param days: + :param day: + :param result: + :return: + """ if days > 0 and result != '': result += f', {day}' elif days > 0: result += f'{day}' + return result + + +def format_hours(hours: int, hour: str, result: str) -> str: + """ + Format hours for the final string + :param hours: + :param hour: + :param result: + :return: + """ if hours > 0 and result != '': result += f', {hour}' elif hours > 0: result += f'{hour}' - if minutes > 0: - if result != '' and seconds == 0: - result += f' and {minute}' - elif result != '': - result += f', {minute}' - else: - result += f'{minute}' + return result + +def format_minutes(minutes: int, + seconds: int, + minute: str, + result: str) -> str: + """ + Format minutes for the final string + :param minutes: + :param seconds: + :param minute: + :param result: + :return: + """ + if minutes > 0 and result != '' and seconds == 0: + result += f' and {minute}' + elif minutes > 0 and result != '': + result += f', {minute}' + else: + result += f'{minute}' + + return result + + +def format_seconds(seconds: int, second: str, result: str) -> str: + """ + Format seconds for the final string + :param seconds: + :param second: + :param result: + :return: + """ if seconds > 0 and result != '': result += f' and {second}' elif seconds > 0: diff --git a/kyu_4/range_extraction/solution.py b/kyu_4/range_extraction/solution.py index 6bdc4e98e02..6fc40883d8e 100644 --- a/kyu_4/range_extraction/solution.py +++ b/kyu_4/range_extraction/solution.py @@ -17,38 +17,68 @@ def solution(args: list) -> str: for i, a in enumerate(args): + # case 1 if current[1] == a: continue - if a == current[1] + 1: - current[1] = a - current[2] = False - else: - if abs(current[1] - current[0]) >= 2 and i != 1: - result += str(current[0]) + '-' + str(current[1]) + ',' - current[2] = True - else: - result += str(current[0]) + ',' - current[2] = True + # case 2 + result = case_2(a=a, i=i, current=current, result=result) - if current[0] != current[1]: - result += str(current[1]) + ',' + # case 3 + if i == len(args) - 1 and not current[2]: + result = case_3(a=a, current=current, result=result) - current[0] = a - current[1] = a + # case 4 + if i == len(args) - 1 and current[-1] != a and current[2]: + result += str(a) - if i == len(args) - 1 and current[2] is False: + return result - if current[1] + 1 == a: - current[1] = a - result += str(current[0]) - if abs(current[1] - current[0]) >= 2: - result += '-' + str(current[1]) - elif current[0] != current[1]: - result += ',' + str(current[1]) +def case_3(a: int, current: list, result: str) -> str: + """ + Case #3 + :param a: + :param current: + :param result: + :return: + """ + if current[1] + 1 == a: + current[1] = a - if i == len(args) - 1 and current[-1] != a and current[2] is True: - result += str(a) + result += str(current[0]) + if abs(current[1] - current[0]) >= 2: + result += '-' + str(current[1]) + elif current[0] != current[1]: + result += ',' + str(current[1]) + + return result + + +def case_2(**kwargs) -> str: + """ + Case #2 + :return: + """ + a: int = kwargs['a'] + i: int = kwargs['i'] + current: list = kwargs['current'] + result: str = kwargs['result'] + + if a == current[1] + 1: + current[1] = a + current[2] = False + else: + current[2] = True + + if abs(current[1] - current[0]) >= 2 and i != 1: + result += str(current[0]) + '-' + str(current[1]) + ',' + else: + result += str(current[0]) + ',' + if current[0] != current[1]: + result += str(current[1]) + ',' + + current[0] = a + current[1] = a return result diff --git a/kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py b/kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py index f591955e372..fe1a30f09ac 100644 --- a/kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py +++ b/kyu_5/did_i_finish_my_sudoku/sudoku_by_row.py @@ -13,7 +13,6 @@ def assert_sudoku_by_row(board: list) -> bool: :return: bool """ for row in board: - print(row) if len(row) != len(set(row)) or len(row) != len(board[0]): return False diff --git a/kyu_5/find_the_safest_places_in_town/test_advice.py b/kyu_5/find_the_safest_places_in_town/test_advice.py index df59a21feee..2df79d7ea8e 100644 --- a/kyu_5/find_the_safest_places_in_town/test_advice.py +++ b/kyu_5/find_the_safest_places_in_town/test_advice.py @@ -11,8 +11,6 @@ from utils.log_func import print_log from kyu_5.find_the_safest_places_in_town.advice \ import advice, create_city_map, agents_cleanup -from kyu_5.find_the_safest_places_in_town.print_agents \ - import print_map # pylint: disable-msg=R0801 @@ -499,7 +497,6 @@ def test_first_non_repeating_letter(self): message = data[3] # test log print_log(agents=agents, n=n, expected=expected, message=message) - print_map(agents, n, expected) # assertion self.assertEqual(expected, sorted(advice(agents=agents, n=n)), diff --git a/kyu_5/sports_league_table_ranking/test_compute_ranks.py b/kyu_5/sports_league_table_ranking/test_compute_ranks.py index 0a250a5b6f5..00960236b7f 100644 --- a/kyu_5/sports_league_table_ranking/test_compute_ranks.py +++ b/kyu_5/sports_league_table_ranking/test_compute_ranks.py @@ -37,14 +37,10 @@ def test_compute_ranks(self): both teams 1 point. After some games you have to compute the order of the teams in your league. You use the following criteria to arrange the teams: - 1. Points. - 2. Scoring differential (the difference between goals scored and those conceded). - 3. Goals scored. - :return: """ # pylint: disable-msg=R0801 diff --git a/kyu_6/README.md b/kyu_6/README.md index effac3ed330..5382710c6e4 100644 --- a/kyu_6/README.md +++ b/kyu_6/README.md @@ -15,44 +15,46 @@ rank - the harder the kata the faster you advance. ### List of Completed Kata (Python 3) -| No. | Puzzle/Kata Name | Solution / GitHub Link | -|-----|:--------------------------------------------------------------------------------------------------------------:|-----------------------------------------------------------------------------------------------------:| -| 1 | [Character frequency](https://www.codewars.com/kata/53e895e28f9e66a56900011a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/character_frequency) | -| 2 | [Count letters in string](https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/count_letters_in_string) | -| 3 | [Duplicate Encoder](https://www.codewars.com/kata/54b42f9314d9229fd6000d9c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/duplicate_encoder) | -| 4 | [Find the odd int](https://www.codewars.com/kata/54da5a58ea159efa38000836) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/find_the_odd_int) | -| 5 | [First character that repeats](https://www.codewars.com/kata/54f9f4d7c41722304e000bbb) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/first_character_that_repeats) | -| 6 | [Character with longest consecutive repetition](https://www.codewars.com/kata/586d6cefbcc21eed7a001155) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/longest_repetition) | -| 7 | [Numericals of a String](https://www.codewars.com/kata/5b4070144d7d8bbfe7000001) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/numericals_of_string) | -| 8 | [Permute a Palindrome](https://www.codewars.com/kata/58ae6ae22c3aaafc58000079) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/permute_a_palindrome) | -| 9 | [Pyramid Array](https://www.codewars.com/kata/515f51d438015969f7000013) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/pyramid_array) | -| 10 | [String subpattern recognition I](https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_1) | -| 11 | [String subpattern recognition II](https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_2) | -| 12 | [String subpattern recognition III](https://www.codewars.com/kata/5a4a2973d8e14586c700000a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_3) | -| 13 | [String transformer](https://www.codewars.com/kata/5878520d52628a092f0002d0) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_transformer) | -| 14 | [Unique In Order](https://www.codewars.com/kata/54e6533c92449cc251001667) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/unique_in_order) | -| 15 | [Vasya - Clerk](https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/vasya_clerk) | -| 16 | [Multiples of 3 or 5](https://www.codewars.com/kata/514b92a657cdc65150000006) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/multiples_of_3_or_5) | -| 17 | [Sum of Digits / Digital Root](https://www.codewars.com/kata/541c8630095125aba6000c00) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/sum_of_digits_digital_root) | -| 18 | [Binary to Text (ASCII) Conversion](https://www.codewars.com/kata/5583d268479559400d000064) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/binary_to_text_ascii_conversion) | -| 19 | [Casino chips](https://www.codewars.com/kata/5e0b72d2d772160011133654) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/casino_chips) | -| 20 | [Pokemon Damage Calculator](https://www.codewars.com/kata/536e9a7973130a06eb000e9f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/pokemon_damage_calculator) | -| 21 | [Help the bookseller !](https://www.codewars.com/kata/54dc6f5a224c26032800005c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/help_the_bookseller) | -| 22 | [Row of the odd triangle](https://www.codewars.com/kata/5d5a7525207a674b71aa25b5) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/row_of_the_odd_triangle) | -| 23 | [Disease Spread](https://www.codewars.com/kata/566543703c72200f0b0000c9) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/disease_spread) | -| 24 | [A Rule of Divisibility by 13](https://www.codewars.com/kata/564057bc348c7200bd0000ff) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/a_rule_of_divisibility_by_13) | -| 25 | [Color Choice](https://www.codewars.com/kata/55be10de92aad5ef28000023) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/color_choice) | -| 26 | [DefaultList](https://www.codewars.com/kata/5e882048999e6c0023412908) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/default_list) | -| 27 | [Easy Diagonal](https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/easy_diagonal) | -| 28 | [Array to HTML table](https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/array_to_html_table) | -| 29 | [rotate the letters of each element](https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/rotate_the_letters_of_each_element) | -| 30 | [Number Zoo Patrol](https://www.codewars.com/kata/5276c18121e20900c0000235) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/number_zoo_patrol) | -| 31 | [Your order, please](https://www.codewars.com/kata/55c45be3b2079eccff00010f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/your_order_please) | -| 32 | [Who likes it?](https://www.codewars.com/kata/5266876b8f4bf2da9b000362) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/who_likes_it) | -| 33 | [Encrypt this!](https://www.codewars.com/kata/5848565e273af816fb000449) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/encrypt_this) | -| 34 | [Decipher this!](https://www.codewars.com/kata/decipher-this) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/decipher_this) | -| 35 | [Format a string of names like 'Bart, Lisa & Maggie'.](https://www.codewars.com/kata/53368a47e38700bd8300030d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/format_string_of_names) | -| 36 | [Sort the odd](https://www.codewars.com/kata/578aa45ee9fd15ff4600090d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/sort_the_odd) | -| 37 | [Array.diff](https://www.codewars.com/kata/523f5d21c841566fde000009) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/array_diff) | +| No. | Puzzle/Kata Name | Solution / GitHub Link | +|-----|:---------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------| +| 1 | [Character frequency](https://www.codewars.com/kata/53e895e28f9e66a56900011a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/character_frequency) | +| 2 | [Count letters in string](https://www.codewars.com/kata/5808ff71c7cfa1c6aa00006d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/count_letters_in_string) | +| 3 | [Duplicate Encoder](https://www.codewars.com/kata/54b42f9314d9229fd6000d9c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/duplicate_encoder) | +| 4 | [Find the odd int](https://www.codewars.com/kata/54da5a58ea159efa38000836) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/find_the_odd_int) | +| 5 | [First character that repeats](https://www.codewars.com/kata/54f9f4d7c41722304e000bbb) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/first_character_that_repeats) | +| 6 | [Character with longest consecutive repetition](https://www.codewars.com/kata/586d6cefbcc21eed7a001155) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/longest_repetition) | +| 7 | [Numericals of a String](https://www.codewars.com/kata/5b4070144d7d8bbfe7000001) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/numericals_of_string) | +| 8 | [Permute a Palindrome](https://www.codewars.com/kata/58ae6ae22c3aaafc58000079) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/permute_a_palindrome) | +| 9 | [Pyramid Array](https://www.codewars.com/kata/515f51d438015969f7000013) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/pyramid_array) | +| 10 | [String subpattern recognition I](https://www.codewars.com/kata/5a49f074b3bfa89b4c00002b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_1) | +| 11 | [String subpattern recognition II](https://www.codewars.com/kata/5a4a391ad8e145cdee0000c4) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_2) | +| 12 | [String subpattern recognition III](https://www.codewars.com/kata/5a4a2973d8e14586c700000a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_subpattern_recognition_3) | +| 13 | [String transformer](https://www.codewars.com/kata/5878520d52628a092f0002d0) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/string_transformer) | +| 14 | [Unique In Order](https://www.codewars.com/kata/54e6533c92449cc251001667) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/unique_in_order) | +| 15 | [Vasya - Clerk](https://www.codewars.com/kata/555615a77ebc7c2c8a0000b8) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/vasya_clerk) | +| 16 | [Multiples of 3 or 5](https://www.codewars.com/kata/514b92a657cdc65150000006) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/multiples_of_3_or_5) | +| 17 | [Sum of Digits / Digital Root](https://www.codewars.com/kata/541c8630095125aba6000c00) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/sum_of_digits_digital_root) | +| 18 | [Binary to Text (ASCII) Conversion](https://www.codewars.com/kata/5583d268479559400d000064) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/binary_to_text_ascii_conversion) | +| 19 | [Casino chips](https://www.codewars.com/kata/5e0b72d2d772160011133654) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/casino_chips) | +| 20 | [Pokemon Damage Calculator](https://www.codewars.com/kata/536e9a7973130a06eb000e9f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/pokemon_damage_calculator) | +| 21 | [Help the bookseller !](https://www.codewars.com/kata/54dc6f5a224c26032800005c) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/help_the_bookseller) | +| 22 | [Row of the odd triangle](https://www.codewars.com/kata/5d5a7525207a674b71aa25b5) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/row_of_the_odd_triangle) | +| 23 | [Disease Spread](https://www.codewars.com/kata/566543703c72200f0b0000c9) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/disease_spread) | +| 24 | [A Rule of Divisibility by 13](https://www.codewars.com/kata/564057bc348c7200bd0000ff) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/a_rule_of_divisibility_by_13) | +| 25 | [Color Choice](https://www.codewars.com/kata/55be10de92aad5ef28000023) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/color_choice) | +| 26 | [DefaultList](https://www.codewars.com/kata/5e882048999e6c0023412908) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/default_list) | +| 27 | [Easy Diagonal](https://www.codewars.com/kata/559b8e46fa060b2c6a0000bf) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/easy_diagonal) | +| 28 | [Array to HTML table](https://www.codewars.com/kata/5e7e4b7cd889f7001728fd4a) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/array_to_html_table) | +| 29 | [rotate the letters of each element](https://www.codewars.com/kata/5e98712b7de14f0026ef1cc1) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/rotate_the_letters_of_each_element) | +| 30 | [Number Zoo Patrol](https://www.codewars.com/kata/5276c18121e20900c0000235) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/number_zoo_patrol) | +| 31 | [Your order, please](https://www.codewars.com/kata/55c45be3b2079eccff00010f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/your_order_please) | +| 32 | [Who likes it?](https://www.codewars.com/kata/5266876b8f4bf2da9b000362) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/who_likes_it) | +| 33 | [Encrypt this!](https://www.codewars.com/kata/5848565e273af816fb000449) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/encrypt_this) | +| 34 | [Decipher this!](https://www.codewars.com/kata/decipher-this) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/decipher_this) | +| 35 | [Format a string of names like 'Bart, Lisa & Maggie'.](https://www.codewars.com/kata/53368a47e38700bd8300030d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/format_string_of_names) | +| 36 | [Sort the odd](https://www.codewars.com/kata/578aa45ee9fd15ff4600090d) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/sort_the_odd) | +| 37 | [Array.diff](https://www.codewars.com/kata/523f5d21c841566fde000009) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/array_diff) | +| 38 | [Scheduling](https://www.codewars.com/kata/550cc572b9e7b563be00054f) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/scheduling ) | +| 39 | [Sums of Parts](https://www.codewars.com/kata/5ce399e0047a45001c853c2b) | [Solution](https://github.com/ikostan/codewars/tree/master/kyu_6/sums_of_parts ) | [Source](https://www.codewars.com/about) \ No newline at end of file diff --git a/kyu_6/array_to_html_table/to_table.py b/kyu_6/array_to_html_table/to_table.py index a57ace26eda..d000033d614 100644 --- a/kyu_6/array_to_html_table/to_table.py +++ b/kyu_6/array_to_html_table/to_table.py @@ -21,8 +21,7 @@ 'end': ''}, 'column': { 'start': 'Test a function that processes sequence of jobs " + "and returns a positive integer representing the cc it" + "takes to complete the job at index.
") + # pylint: enable-msg=R0801 + test_data: tuple = ( + (([100], 0), 100), + (([3, 10, 20, 1, 2], 0), 6), + (([3, 10, 20, 1, 2], 1), 16), + (([3, 10, 10, 20, 1, 2], 1), 16), + (([3, 10, 10, 20, 1, 2], 2), 26), + (([20, 20, 7, 15, 14, 10, 16, 16, 3, 18, 3, 1, 13, 1, 17, 2, 17, 17, 20, + 3, 12, 11, 9, 5, 11, 19, 15, 15, 1, 2, 19, 9, 20, 7, 11, 5, 4, 3, 5, + 8, 13, 8, 11, 3, 12, 20, 20, 10, 19, 20, 16, 5, 5, 9, 15, 1, 14, 10, + 13, 8, 11, 1, 20, 18, 9, 10, 3, 8, 11, 11, 17, 6, 7, 6, 12, 17, 8, 19, + 10, 5, 7, 8, 7, 11, 15, 12, 7, 6, 2, 14, 14, 2, 16, 3, 16, 6, 7, 15, + 20, 13, 2, 19, 5, 3, 4, 15, 10, 9, 10, 16, 10, 14, 4, 13, 4, 6, 1, 18, + 6, 10, 16, 4, 6, 6, 2, 8, 16, 18, 2, 15, 18, 15, 2], 75), 1008), + (([4, 13, 13, 12, 17, 4, 15, 4, 12, 2, 15, 7, 2, 12, 19, 11, 10, 7, 11, + 18, 5, 7, 15, 20, 9, 16, 12, 17, 7, 2, 10, 19, 6, 9, 7, 16, 19, 16, + 15, 6, 17, 3, 13, 11, 19, 18, 13, 10, 5, 20, 5, 10, 9, 18, 14, 18, 8, + 15, 17, 10, 17, 5, 3, 1, 18, 5, 1, 19, 14, 4, 6, 19, 19, 3, 5, 3, 2, 4, + 9, 18, 1, 3, 11, 16, 8, 1, 6, 6, 10, 2, 17, 1, 16, 3, 3, 2, 16, 4, 13, + 20, 5, 20, 20, 5, 1, 20, 14, 4, 11, 5, 9, 2, 6, 20, 11, 17, 4, 12, 13, + 16, 13, 19, 5, 18, 20, 6, 19, 10, 19, 12, 4, 18, 5, 14, 9, 1, 1, 5, 13, + 14, 9, 18, 9, 11, 19, 10, 20, 17, 13, 1, 13, 8, 12, 2, 19, 3, 14, 1, 20, + 7, 14, 12, 11, 18, 3, 4, 9, 5, 19], 24), 275)) + + for n, expected in test_data: + jobs, index = n + actual_result = shortest_job_first(jobs, index) + # pylint: disable-msg=R0801 + with allure.step(f"Enter a n ({n}) and verify the " + f"expected output ({expected}) vs " + f"actual result ({actual_result})"): + + print_log(n=n, + expected=expected, + result=actual_result) + + self.assertEqual(expected, + actual_result) + # pylint: enable-msg=R0801 diff --git a/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py b/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py index 00b186b4b88..7c6bcc87718 100644 --- a/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py +++ b/kyu_6/string_subpattern_recognition_2/test_has_subpattern.py @@ -12,6 +12,7 @@ from utils.log_func import print_log from kyu_6.string_subpattern_recognition_2.has_subpattern import has_subpattern + # pylint: disable-msg=R0801 @allure.epic('6 kyu') @allure.parent_suite('Novice') @@ -32,6 +33,7 @@ class HasSubpatternTestCase(unittest.TestCase): """ Testing 'has_subpattern' function """ + def test_has_subpattern(self): """ Verify that 'has_subpattern' function to returns diff --git a/kyu_6/sums_of_parts/README.md b/kyu_6/sums_of_parts/README.md new file mode 100644 index 00000000000..386e164fe99 --- /dev/null +++ b/kyu_6/sums_of_parts/README.md @@ -0,0 +1,46 @@ +# Sums of Parts + +Let us consider this example (array written in general format): + +```bash +ls = [0, 1, 3, 6, 10] +``` + +It's following parts: + +```bash +ls = [0, 1, 3, 6, 10] +ls = [1, 3, 6, 10] +ls = [3, 6, 10] +ls = [6, 10] +ls = [10] +ls = [] +``` + +The corresponding sums are (put together in a list): + +```bash +[20, 20, 19, 16, 10, 0] +``` + +The function parts_sums (or its variants in other languages) will take as +parameter a list ls and return a list of the sums of its parts as defined above. + +Other Examples: + + +```bash +ls = [1, 2, 3, 4, 5, 6] +parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0] + +ls = [744125, 935, 407, 454, 430, 90, 144, 6710213, 889, 810, 2579358] +parts_sums(ls) -> [10037855, 9293730, 9292795, 9292388, 9291934, 9291504, 9291414, 9291270, 2581057, 2580168, 2579358, 0] +``` + + +## Notes + +- Take a look at performance: some lists have thousands of elements. +- Please ask before translating. + +[Source](https://www.codewars.com/kata/5ce399e0047a45001c853c2b/python) \ No newline at end of file diff --git a/kyu_6/sums_of_parts/__init__.py b/kyu_6/sums_of_parts/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/kyu_6/sums_of_parts/solution.py b/kyu_6/sums_of_parts/solution.py new file mode 100644 index 00000000000..938405f8f4b --- /dev/null +++ b/kyu_6/sums_of_parts/solution.py @@ -0,0 +1,28 @@ +""" +Test for -> Sums of Parts +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + + +def parts_sums(input_ls: list) -> list: + """ + The function parts_sums will take as parameter a list input_ls + and return a list of the sums of its parts. + :param input_ls: + :return: + """ + # empty list should return 0 + if not input_ls: + return [0] + + result: list = [] + ls_sum: int = sum(input_ls) + result.append(ls_sum) + + for num in input_ls: + current_sum: int = ls_sum - num + result.append(current_sum) + ls_sum = current_sum + + return result diff --git a/kyu_6/sums_of_parts/test_solution.py b/kyu_6/sums_of_parts/test_solution.py new file mode 100644 index 00000000000..0ef885b8310 --- /dev/null +++ b/kyu_6/sums_of_parts/test_solution.py @@ -0,0 +1,74 @@ +""" +Test for -> Sums of Parts +Created by Egor Kostan. +GitHub: https://github.com/ikostan +""" + +# Fundamentals Performance Algorithms + +import unittest +import allure +from utils.log_func import print_log +from kyu_6.sums_of_parts.solution import parts_sums + + +# pylint: disable-msg=R0801 +@allure.epic('6 kyu') +@allure.parent_suite('Novice') +@allure.suite("Fundamentals") +@allure.sub_suite("Unit Tests") +@allure.feature("Algorithms") +@allure.story('Sums of Parts') +@allure.tag('FUNDAMENTALS', + 'PERFORMANCE', + 'ALGORITHMS') +@allure.link( + url='https://www.codewars.com/kata/5ce399e0047a45001c853c2b', + name='Source/Kata') +# pylint: enable-msg=R0801 +class PartsSumTestCase(unittest.TestCase): + """ + Testing 'parts_sums' function + """ + + # pylint: disable-msg=R0801 + def test_parts_sum(self): + """ + Testing 'parts_sums' function with various test data + :return: + """ + allure.dynamic.title("Testing 'parts_sums' function") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + 'Test a function that take as parameter a list ls and "
+ "return a list of the sums of its parts as defined below:
"
+ "ls = [1, 2, 3, 4, 5, 6]
"
+ "parts_sums(ls) -> [21, 20, 18, 15, 11, 6, 0]"
+ "
Should return True for valid parentheses.
") + # pylint: enable=R0801 + test_data: tuple = ( + "()", + "((()))", + "()()()", + "(()())()", + "()(())((()))(())()") + + for test_str in test_data: + with allure.step(f"Enter test string {test_data}" + f"and verify that the function returns True."): + result: bool = valid_parentheses(test_str) + print_log(test_str=test_str, result=result) + self.assertTrue(result) + + def test_valid_parentheses_false(self): + """ + 0 is a square number + :return: + """ + # pylint: disable=R0801 + allure.dynamic.title("Simple test for invalid parentheses") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + 'Should return False for invalid parentheses
") + # pylint: enable=R0801 + test_data: tuple = ( + ")(", + "()()(", + "((())", + "())(()", + ")()", + ")") + + for test_str in test_data: + with allure.step(f"Enter test string {test_data}" + f"and verify that the function returns False."): + result: bool = valid_parentheses(test_str) + print_log(test_str=test_str, result=result) + self.assertFalse(result) + + def test_valid_parentheses_empty_string(self): + """ + 3 is not a square number + :return: + """ + # pylint: disable=R0801 + allure.dynamic.title("Simple test for empty string.") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + 'Should return True for empty strings.
") + # pylint: enable=R0801 + with allure.step("Enter empty test string and verify" + "that the function returns True."): + result: bool = valid_parentheses('') + print_log(test_data='', result=result) + self.assertTrue(result) + + def test_valid_parentheses_large_valid(self): + """ + Test valid_parentheses function with + valid large string + :return: + """ + # pylint: disable=R0801 + allure.dynamic.title("Test for valid large string") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + 'Valid large test string
") + # pylint: enable=R0801 + with (allure.step("Enter a large valid test string and verify" + "that the function returns True.")): + test_str: str = ('()(()()()()(()())((()()())((((())(()))(()))(((' + ')(())((()))((())()))(())(()()(())))())))') + result: bool = valid_parentheses(test_str) + print_log(test_str=test_str, result=result) + self.assertTrue(result) + + def test_valid_parentheses_large_invalid(self): + """ + Test valid_parentheses function with + invalid large string + :return: + """ + # pylint: disable=R0801 + allure.dynamic.title("Test for invalid large string") + allure.dynamic.severity(allure.severity_level.NORMAL) + allure.dynamic.description_html( + 'Invalid large test string
") + # pylint: enable=R0801 + with (allure.step("Enter a large invalid test string and verify" + "that the function returns False.")): + test_str: str = ('(((())(()()(()()))(())())(((()(()))))()(()()((' + '))))()()()(()())(()()(()()()(()()()((()())))))())()') + result: bool = valid_parentheses(test_str) + print_log(test_str=test_str, result=result) + self.assertFalse(result) diff --git a/kyu_8/century_from_year/test_century.py b/kyu_8/century_from_year/test_century.py index 8cc56daa5f5..1c86b9c549c 100644 --- a/kyu_8/century_from_year/test_century.py +++ b/kyu_8/century_from_year/test_century.py @@ -61,7 +61,6 @@ def test_century(self): (89, 1, 'Testing for year 89')) for year, expected, message in test_data: - print('\n', message) result: int = century(year) with allure.step(f"Enter test year ({year}) and verify " @@ -70,7 +69,8 @@ def test_century(self): print_log(year=year, result=result, - expected=expected) + expected=expected, + message=message) self.assertEqual(expected, result) diff --git a/requirements.txt b/requirements.txt index 7beab2ed053..1d8fc4dc17d 100644 Binary files a/requirements.txt and b/requirements.txt differ diff --git a/utils/log_func.py b/utils/log_func.py index c9ce8eca0df..fa5052222a9 100644 --- a/utils/log_func.py +++ b/utils/log_func.py @@ -11,8 +11,10 @@ def print_log(**kwargs) -> None: :param kwargs: :return: """ + print_output = kwargs.get('print_output', False) log: str = '' for key, item in kwargs.items(): log += f'{key}: {item},\n' - print(f'\nLOG =>\n{log[:-2]}\n') + if print_output: + print(f'\nLOG =>\n{log[:-2]}\n')